Lines Matching refs:pubexp
1223 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp)
1226 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp);
1231 * pubexp BIGNUM becomes managed by the EVP_PKEY_CTX on success.
1235 ctx->rsa_pubexp = pubexp;
1241 int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp)
1247 * pubexp, as it gets copied when transforming to an OSSL_PARAM anyway.
1250 pubexp = BN_dup(pubexp);
1251 if (pubexp == NULL)
1255 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp);
1257 BN_free(pubexp);