blob: 4480a4804354ef1c6926f7c6df4d1d8f42b5ef17 [file] [log] [blame]
Test exporting a SHA-256 RSA-OAEP key pair with JWK format.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Generating a key pair...
Exporting the public key...
PASS publicKey.kty is 'RSA'
PASS publicKey.key_ops is ['encrypt', 'wrapKey']
PASS publicKey.alg is 'RSA-OAEP-256'
PASS publicKey.ext is true
PASS Base64URL.parse(publicKey.n).byteLength is 256
PASS bytesToHexString(Base64URL.parse(publicKey.e)) is '010001'
Exporting the private key...
PASS privateKey.kty is 'RSA'
PASS privateKey.key_ops is ['decrypt', 'unwrapKey']
PASS privateKey.alg is 'RSA-OAEP-256'
PASS privateKey.ext is true
PASS Base64URL.parse(privateKey.n).byteLength is 256
PASS bytesToHexString(Base64URL.parse(privateKey.e)) is '010001'
PASS privateKey.oth is undefined.
PASS successfullyParsed is true
TEST COMPLETE