RSA 密钥对


\RSA key pairs

const { subtle } = globalThis.crypto;
const publicExponent = new Uint8Array([1, 0, 1]);
async function generateRsaKey(modulusLength = 2048, hash = 'SHA-256') {
 const {
 publicKey,
 privateKey,
 } = await subtle.generateKey({
 name: 'RSASSA-PKCS1-v1_5',
 modulusLength,
 publicExponent,
 hash,
 }, true, ['sign', 'verify']);
 return { publicKey, privateKey };
} 

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