6

使用生成 RSA 密钥对时是否可以更改默认公共指数 (e) SecKeyGeneratePair

我知道 65537 是一个很好的默认值,所以这只是一个关于它在技术上是否可行的问题。

4

1 回答 1

2

不,这不对。

来自https://github.com/unofficial-opensource-apple/Security, Security/sec/Security/SecRSAKey.c:

/* TODO: Add support for kSecPublicExponent parameter. */
static uint8_t e[] = { 0x01, 0x00, 0x01 }; // Default is 65537
于 2015-06-08T07:10:55.187 回答