HomeSort by: relevance | last modified time | path
    Searched refs:rsa_keygen (Results 1 - 13 of 13) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_gen.c 31 static int rsa_keygen(OSSL_LIB_CTX *libctx, RSA *rsa, int bits, int primes,
43 if (rsa->meth->rsa_keygen != NULL)
44 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
58 } else if (rsa->meth->rsa_keygen != NULL) {
60 * However, if rsa->meth implements only rsa_keygen, then we
66 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
71 return rsa_keygen(rsa->libctx, rsa, bits, primes, e_value, cb, 0);
424 static int rsa_keygen(OSSL_LIB_CTX *libctx, RSA *rsa, int bits, int primes, function
rsa_meth.c 269 return meth->rsa_keygen;
276 meth->rsa_keygen = keygen;
rsa_local.h 145 int (*rsa_keygen) (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); member in struct:rsa_meth_st
  /src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
rsa_gen.c 34 if (rsa->meth->rsa_keygen != NULL)
35 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
48 } else if (rsa->meth->rsa_keygen != NULL) {
50 * However, if rsa->meth implements only rsa_keygen, then we
56 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
rsa_local.h 110 int (*rsa_keygen) (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); member in struct:rsa_meth_st
rsa_meth.c 263 return meth->rsa_keygen;
270 meth->rsa_keygen = keygen;
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_gen.c 31 static int rsa_keygen(OSSL_LIB_CTX *libctx, RSA *rsa, int bits, int primes,
43 if (rsa->meth->rsa_keygen != NULL)
44 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
58 } else if (rsa->meth->rsa_keygen != NULL) {
60 * However, if rsa->meth implements only rsa_keygen, then we
66 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
71 return rsa_keygen(rsa->libctx, rsa, bits, primes, e_value, cb, 0);
611 static int rsa_keygen(OSSL_LIB_CTX *libctx, RSA *rsa, int bits, int primes, function
rsa_meth.c 256 return meth->rsa_keygen;
263 meth->rsa_keygen = keygen;
rsa_local.h 145 int (*rsa_keygen)(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); member in struct:rsa_meth_st
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rsa.h 101 int (*rsa_keygen)(RSA *, int, BIGNUM *, BN_GENCB *); member in struct:RSA_METHOD
rsa.c 474 if (r->meth->rsa_keygen)
475 return (*r->meth->rsa_keygen)(r, bits, e, cb);
  /src/crypto/external/bsd/openssl/dist/test/
evp_libctx_test.c 496 static int rsa_keygen(int bits, EVP_PKEY **pub, EVP_PKEY **priv) function
534 ret = TEST_true(rsa_keygen(bits, &pub, &priv))
615 ret = TEST_true(rsa_keygen(2048, &pub, &priv))
  /src/crypto/external/apache2/openssl/dist/test/
evp_libctx_test.c 687 static int rsa_keygen(int bits, EVP_PKEY **pub, EVP_PKEY **priv) function
730 ret = TEST_true(rsa_keygen(bits, &pub, &priv))
826 ret = TEST_true(rsa_keygen(2048, &pub, &priv))

Completed in 43 milliseconds