Home
last modified time | relevance | path

Searched refs:pubexp (Results 1 – 5 of 5) sorted by relevance

/openssl/crypto/rsa/
H A Drsa_lib.c1324 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp) in EVP_PKEY_CTX_set_rsa_keygen_pubexp() argument
1327 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp); in EVP_PKEY_CTX_set_rsa_keygen_pubexp()
1336 ctx->rsa_pubexp = pubexp; in EVP_PKEY_CTX_set_rsa_keygen_pubexp()
1342 int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp) in EVP_PKEY_CTX_set1_rsa_keygen_pubexp() argument
1351 pubexp = BN_dup(pubexp); in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
1352 if (pubexp == NULL) in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
1356 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp); in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
1358 BN_free(pubexp); in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
H A Drsa_pmeth.c707 BIGNUM *pubexp = NULL; in pkey_rsa_ctrl_str() local
708 if (!BN_asc2bn(&pubexp, value)) in pkey_rsa_ctrl_str()
710 ret = EVP_PKEY_CTX_set1_rsa_keygen_pubexp(ctx, pubexp); in pkey_rsa_ctrl_str()
711 BN_free(pubexp); in pkey_rsa_ctrl_str()
/openssl/include/openssl/
H A Drsa.h129 int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
134 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
/openssl/doc/man3/
H A DEVP_PKEY_CTX_ctrl.pod105 int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
185 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
308 generation to the value stored in I<pubexp>. Currently it should be an odd
309 integer. In accordance with the OpenSSL naming convention, the I<pubexp> pointer
315 therefore I<pubexp> should not be modified or freed after the call.
/openssl/engines/
H A De_capi.c705 if (!BN_set_word(e, rp->pubexp)) { in capi_get_pkey()

Completed in 16 milliseconds