AES 密钥


\AES keys

const { subtle } = globalThis.crypto;
async function generateAesKey(length = 256) {
 const key = await subtle.generateKey({
 name: 'AES-CBC',
 length,
 }, true, ['encrypt', 'decrypt']);
 return key;
} 

AltStyle によって変換されたページ (->オリジナル) /