rsaHashedKeyGenParams.publicExponent
- 类型:<Uint8Array>
RSA 公共指数。这必须是一个 <Uint8Array>,其中包含一个大端、无符号的整数,该整数必须适合 32 位。<Uint8Array> 可以包含任意数量的前导零位。该值必须是一个质数。除非有理由使用不同的值,否则将公用指数设置为 new Uint8Array([1, 0, 1])(65537)。
【The RSA public exponent. This must be a <Uint8Array> containing a big-endian,
unsigned integer that must fit within 32-bits. The <Uint8Array> may contain an
arbitrary number of leading zero-bits. The value must be a prime number. Unless
there is reason to use a different value, use new Uint8Array([1, 0, 1])
(65537) as the public exponent.】