Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rsa/
H A Drsa_lib.c1245 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp) in EVP_PKEY_CTX_set_rsa_keygen_pubexp() argument
1248 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp); in EVP_PKEY_CTX_set_rsa_keygen_pubexp()
1257 ctx->rsa_pubexp = pubexp; in EVP_PKEY_CTX_set_rsa_keygen_pubexp()
1263 int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp) in EVP_PKEY_CTX_set1_rsa_keygen_pubexp() argument
1272 pubexp = BN_dup(pubexp); in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
1273 if (pubexp == NULL) in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
1277 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp); in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
1279 BN_free(pubexp); in EVP_PKEY_CTX_set1_rsa_keygen_pubexp()
H A Drsa_pmeth.c672 BIGNUM *pubexp = NULL; in pkey_rsa_ctrl_str() local
673 if (!BN_asc2bn(&pubexp, value)) in pkey_rsa_ctrl_str()
675 ret = EVP_PKEY_CTX_set1_rsa_keygen_pubexp(ctx, pubexp); in pkey_rsa_ctrl_str()
676 BN_free(pubexp); in pkey_rsa_ctrl_str()
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/
H A Dplainrsa-gen.c231 unsigned int pubexp = DEFAULT_PUBEXP; in main() local
241 pubexp = (unsigned int)strtoul(optarg, NULL, 0); in main()
303 gen_rsa_key(fp, bits, pubexp); in main()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
H A Drsa_pmeth.c643 BIGNUM *pubexp = NULL; in pkey_rsa_ctrl_str() local
644 if (!BN_asc2bn(&pubexp, value)) in pkey_rsa_ctrl_str()
646 ret = EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp); in pkey_rsa_ctrl_str()
648 BN_free(pubexp); in pkey_rsa_ctrl_str()
/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Dpkcs11rsa_link.c1094 CK_BYTE pubexp[5]; in pkcs11rsa_generate() local
1104 { CKA_PUBLIC_EXPONENT, &pubexp, (CK_ULONG)sizeof(pubexp) } in pkcs11rsa_generate()
1162 pubexp[0] = 1; in pkcs11rsa_generate()
1163 pubexp[1] = 0; in pkcs11rsa_generate()
1164 pubexp[2] = 1; in pkcs11rsa_generate()
1168 pubexp[0] = 1; in pkcs11rsa_generate()
1169 pubexp[1] = 0; in pkcs11rsa_generate()
1170 pubexp[2] = 0; in pkcs11rsa_generate()
1171 pubexp[3] = 0; in pkcs11rsa_generate()
1172 pubexp[4] = 1; in pkcs11rsa_generate()
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Drsa.h125 # define EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp) \ argument
127 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp)
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Drsa.h126 int EVP_PKEY_CTX_set1_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
131 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
/netbsd-src/crypto/external/bsd/openssl/dist/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);
301 generation to the value stored in I<pubexp>. Currently it should be an odd
302 integer. In accordance with the OpenSSL naming convention, the I<pubexp> pointer
308 therefore I<pubexp> should not be modified or freed after the call.
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DEVP_PKEY_CTX_ctrl.pod86 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *pubexp);
224 for RSA key generation to B<pubexp>. Currently it should be an odd integer. The
225 B<pubexp> pointer is used internally by this function so it should not be
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwincrypt.d813 DWORD pubexp; member
/netbsd-src/crypto/external/bsd/openssl/dist/engines/
H A De_capi.c701 if (!BN_set_word(e, rp->pubexp)) in capi_get_pkey()
/netbsd-src/crypto/external/bsd/openssl.old/dist/engines/
H A De_capi.c688 if (!BN_set_word(e, rp->pubexp)) in capi_get_pkey()