The SubtleCrypto.wrapKey()
method returns a Promise
of a wrapped symmetric key for usage (transfer, storage) in unsecure environments. The wrapped buffer returned is in the format given in parameters, and contains the key wrapped by the given wrapping key with the given algorithm.
var result = crypto.subtle.wrapKey(format, key, wrappingKey, wrapAlgo);
format
is an enumerated value describing the data format in which the key must be wrapped. It can be one of the following: "raw"
, the key as an array of bytes, usually a secret key."pkcs8"
a private key, in the IETF Public Key-Cryptographic Standard Encryption #8."spki"
, usually a public key, in the Simple public key infrastructure standard"jwk"
, the key in the JSON Web Key format.key
is the CryptoKey
to wrap.wrappingkey
is the CryptoKey
used to perform the wrapping.wrapAlgo
is the DOMString
} representing the algorithm used to perform the wrapping. It is one of the following: AES-CBC
, AES-CTR
, AES-GCM
, RSA-OAEP
, and AES-KW
.result
is a Promise
that returns the wrapped key in the requested format.The promise is rejected when one of the following exceptions is encountered:
InvalidAccessError
when the wrapping key is not a key for the requested wrap algorithm.NotSupported
when trying to use an algorithm that is either unknown or isn't suitable for encryption or wrapping.TypeError
when trying to use an invalid format.Specification | Status | Comment |
---|---|---|
Web Cryptography API The definition of 'SubtleCrypto.wrapKey()' in that specification. | Recommendation | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 37 | 12 | 34
|
11
|
24 | 7 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 37 | 37 | 12 | 34
|
24 | 7 | 6.0 |
Crypto
and Crypto.subtle
.SubtleCrypto
, the interface it belongs to.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/wrapKey