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

  /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);
  /system/core/libmincrypt/tools/
DumpPublicKey.java 49 BigInteger pubexp = key.getPublicExponent(); local
53 if (pubexp.equals(BigInteger.valueOf(3))) {
55 } else if (pubexp.equals(BigInteger.valueOf(65537))) {
59 pubexp.toString(10) + ".");
  /external/openssl/crypto/rsa/
rsa_pmeth.c 646 BIGNUM *pubexp = NULL; local
647 if (!BN_asc2bn(&pubexp, value))
649 ret = EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp);
651 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)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wincrypt.h 571 DWORD pubexp; member in struct:_RSAPUBKEY
    [all...]

Completed in 206 milliseconds