(format, key, wrappingKey, wrapAlgorithm)
| 1023 | // subtle.wrapKey() is essentially a subtle.exportKey() followed |
| 1024 | // by a subtle.encrypt(). |
| 1025 | function wrapKey(format, key, wrappingKey, wrapAlgorithm) { |
| 1026 | return callSubtleCryptoMethod(wrapKeyImpl, this, arguments); |
| 1027 | } |
| 1028 | |
| 1029 | function wrapKeyImpl(format, key, wrappingKey, wrapAlgorithm) { |
| 1030 | const prefix = prepareSubtleMethod(this, 'wrapKey', arguments.length, 4); |
nothing calls this directly
no test coverage detected
searching dependent graphs…