HomeSort by relevance Sort by last modified time
    Searched defs:pubexp (Results 1 - 3 of 3) 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 43 BigInteger pubexp = key.getPublicExponent(); local
47 if (pubexp.equals(BigInteger.valueOf(3))) {
49 } else if (pubexp.equals(BigInteger.valueOf(65537))) {
53 pubexp.toString(10) + ".");
  /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);

Completed in 199 milliseconds