OLD | NEW |
1 Test importing keys with various uses from JWK. | 1 Test importing keys with various uses from JWK. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 | 6 |
7 {"key_ops":["encrypt","encrypt"]}: | 7 {"key_ops":["encrypt","encrypt"]}: |
8 Failed importing with encrypt: DataError: The "key_ops" member of the JWK dictio
nary contains duplicate usages. | 8 Failed importing with encrypt: DataError: The "key_ops" member of the JWK dictio
nary contains duplicate usages. |
9 {"key_ops":["encrypt"]}: | 9 {"key_ops":["encrypt"]}: |
10 PASS key.usages is ["encrypt"] | 10 PASS key.usages is ["encrypt"] |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 {"key_ops":["'encrypt'","decrypt"]}: | 75 {"key_ops":["'encrypt'","decrypt"]}: |
76 Failed importing with encrypt: DataError: The JWK "key_ops" member was inconsist
ent with that specified by the Web Crypto call. The JWK usage must be a superset
of those requested | 76 Failed importing with encrypt: DataError: The JWK "key_ops" member was inconsist
ent with that specified by the Web Crypto call. The JWK usage must be a superset
of those requested |
77 {"key_ops":["encrypt "]}: | 77 {"key_ops":["encrypt "]}: |
78 Failed importing with encrypt: DataError: The JWK "key_ops" member was inconsist
ent with that specified by the Web Crypto call. The JWK usage must be a superset
of those requested | 78 Failed importing with encrypt: DataError: The JWK "key_ops" member was inconsist
ent with that specified by the Web Crypto call. The JWK usage must be a superset
of those requested |
79 {"key_ops":["Encrypt"]}: | 79 {"key_ops":["Encrypt"]}: |
80 Failed importing with encrypt: DataError: The JWK "key_ops" member was inconsist
ent with that specified by the Web Crypto call. The JWK usage must be a superset
of those requested | 80 Failed importing with encrypt: DataError: The JWK "key_ops" member was inconsist
ent with that specified by the Web Crypto call. The JWK usage must be a superset
of those requested |
81 PASS successfullyParsed is true | 81 PASS successfullyParsed is true |
82 | 82 |
83 TEST COMPLETE | 83 TEST COMPLETE |
84 | 84 |
OLD | NEW |