Skip to main content

exportKey

method SubtleCrypto.exportKey
Jump to headingSubtleCrypto.exportKey(
format: "jwk",
key: CryptoKey,
): Promise<JsonWebKey>
Jump to headingSubtleCrypto.exportKey(
format: Exclude<KeyFormat, "jwk">,
key: CryptoKey,
): Promise<ArrayBuffer>

Parameters Jump to heading

Return Type Jump to heading

Promise<ArrayBuffer>
Back to top