我可以使用 WebCrypto API 创建一个像这样的 rsa 密钥(请参阅此处真正有用的示例集https://vibornoff.github.io/webcrypto-examples/index.html)
window.crypto.subtle.generateKey({
name: "RSASSA-PKCS1-v1_5",
modulusLength: 2048,
publicExponent: new Uint8Array([0x01, 0x00, 0x01]),
hash: {name: "SHA-256"},
},
true,
["sign", "verify"])
我如何才能真正找到生成的公钥的模数?