静态方法:KeyObject.from(key)
¥Static method: KeyObject.from(key)
-
key
<CryptoKey> -
返回:<KeyObject>
¥Returns: <KeyObject>
示例:将 CryptoKey
实例转换为 KeyObject
:
¥Example: Converting a CryptoKey
instance to a KeyObject
:
const { webcrypto, KeyObject } = await import('node:crypto');
const { subtle } = webcrypto;
const key = await subtle.generateKey({
name: 'HMAC',
hash: 'SHA-256',
length: 256
}, true, ['sign', 'verify']);
const keyObject = KeyObject.from(key);
console.log(keyObject.symmetricKeySize);
// Prints: 32 (symmetric key size in bytes)
const {
webcrypto: {
subtle,
},
KeyObject,
} = require('node:crypto');
(async function() {
const key = await subtle.generateKey({
name: 'HMAC',
hash: 'SHA-256',
length: 256
}, true, ['sign', 'verify']);
const keyObject = KeyObject.from(key);
console.log(keyObject.symmetricKeySize);
// Prints: 32 (symmetric key size in bytes)
})();