* Returns the KeyObjectHandle wrapping the CryptoKey's underlying * key material. * @param {CryptoKey} key * @returns {KeyObjectHandle}
(key)
| 1233 | * @returns {KeyObjectHandle} |
| 1234 | */ |
| 1235 | function getCryptoKeyHandle(key) { |
| 1236 | return getSlots(key)[kSlotHandle]; |
| 1237 | } |
| 1238 | |
| 1239 | function isCryptoKey(obj) { |
| 1240 | if (obj == null || typeof obj !== 'object') |
no outgoing calls
no test coverage detected
searching dependent graphs…