HomeSort by relevance Sort by last modified time
    Searched refs:pubexp (Results 1 - 6 of 6) sorted by null

  /system/core/libmincrypt/tools/
DumpPublicKey.java 40 BigInteger pubexp = key.getPublicExponent(); local
43 if (!pubexp.equals(BigInteger.valueOf(3)))
45 pubexp.toString(10) + ".");
  /external/ipsec-tools/src/racoon/
plainrsa-gen.c 73 fprintf(stderr, " -e pubexp Public exponent to use (default=0x3)\n");
160 unsigned int pubexp = 0x3; local
171 sscanf(optarg, "0x%x", &pubexp);
173 pubexp = atoi(optarg);
203 gen_rsa_key(fp, bits, pubexp);
  /external/chromium/crypto/
rsa_private_key_win.cc 84 rsa_pub_key->pubexp = public_exponent_int;
180 pki.public_exponent()->assign(reinterpret_cast<uint8*>(&rsa_pub_key->pubexp),
181 reinterpret_cast<uint8*>(&rsa_pub_key->pubexp) + 4);
  /external/openssl/crypto/rsa/
rsa_pmeth.c 644 BIGNUM *pubexp = NULL; local
645 if (!BN_asc2bn(&pubexp, value))
647 ret = EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp);
649 BN_free(pubexp);
rsa.h 245 #define EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp) \
247 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp)
  /external/openssl/include/openssl/
rsa.h 245 #define EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp) \
247 EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp)

Completed in 159 milliseconds