mirror of
https://github.com/danbulant/jose
synced 2026-05-22 05:49:01 +00:00
test(deno): mark P-384 ECDH-ES as unsupported by the runtime
This commit is contained in:
parent
2cd44d478e
commit
573f021780
1 changed files with 3 additions and 3 deletions
|
|
@ -28,12 +28,12 @@ Deno.test(
|
|||
test.bind(undefined, generateKeyPair.bind(undefined, 'ECDH-ES', { crv: 'P-256' }), 'ECDH-ES'),
|
||||
)
|
||||
Deno.test(
|
||||
'Encrypt/Decrypt ECDH-ES crv: P-384',
|
||||
test.bind(undefined, generateKeyPair.bind(undefined, 'ECDH-ES', { crv: 'P-384' }), 'ECDH-ES'),
|
||||
'(expecting failure) Encrypt/Decrypt ECDH-ES crv: P-384',
|
||||
failing.bind(undefined, generateKeyPair.bind(undefined, 'ECDH-ES', { crv: 'P-384' }), 'ECDH-ES'),
|
||||
)
|
||||
Deno.test(
|
||||
'(expecting failure) Encrypt/Decrypt ECDH-ES crv: P-521',
|
||||
failing.bind(undefined, generateKeyPair.bind(undefined, 'ECDH-ES', { crv: 'P-384' }), 'ECDH-ES'),
|
||||
failing.bind(undefined, generateKeyPair.bind(undefined, 'ECDH-ES', { crv: 'P-521' }), 'ECDH-ES'),
|
||||
)
|
||||
Deno.test(
|
||||
'Encrypt/Decrypt RSA-OAEP-256',
|
||||
|
|
|
|||
Loading…
Reference in a new issue