( format, wrappedKey, unwrappingKey, unwrapAlgorithm, unwrappedKeyAlgorithm, extractable, keyUsages)
| 1080 | // subtle.unwrapKey() is essentially a subtle.decrypt() followed |
| 1081 | // by a subtle.importKey(). |
| 1082 | function unwrapKey( |
| 1083 | format, |
| 1084 | wrappedKey, |
| 1085 | unwrappingKey, |
| 1086 | unwrapAlgorithm, |
| 1087 | unwrappedKeyAlgorithm, |
| 1088 | extractable, |
| 1089 | keyUsages) { |
| 1090 | return callSubtleCryptoMethod(unwrapKeyImpl, this, arguments); |
| 1091 | } |
| 1092 | |
| 1093 | function unwrapKeyImpl( |
| 1094 | format, |
nothing calls this directly
no test coverage detected
searching dependent graphs…