/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLRSAPrivateCrtKey.java | 36 private BigInteger publicExponent; field in OpenSSLRSAPrivateCrtKey 77 final BigInteger publicExponent = rsaKeySpec.getPublicExponent(); in init() local 86 publicExponent == null ? null : publicExponent.toByteArray(), in init() 123 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent(); in getInstance() local 132 publicExponent == null ? null : publicExponent.toByteArray(), in getInstance() 149 publicExponent = new BigInteger(params[1]); in readParams() 172 return publicExponent; in getPublicExponent() 221 && publicExponent.equals(other.getPublicExponent()) in equals() 241 if (publicExponent != null) { in hashCode() 242 hashCode ^= publicExponent.hashCode(); in hashCode() [all …]
|
D | OpenSSLRSAKeyPairGenerator.java | 40 private byte[] publicExponent = new byte[] { field in OpenSSLRSAKeyPairGenerator 52 publicExponent)); in generateKeyPair() 74 final BigInteger publicExponent = spec.getPublicExponent(); in initialize() local 75 if (publicExponent != null) { in initialize() 76 this.publicExponent = publicExponent.toByteArray(); in initialize()
|
D | OpenSSLRSAPublicKey.java | 40 private BigInteger publicExponent; field in OpenSSLRSAPublicKey 109 publicExponent = new BigInteger(params[1]); in ensureReadParams() 123 return publicExponent; in getPublicExponent() 152 && publicExponent.equals(other.getPublicExponent()); in equals() 159 return modulus.hashCode() ^ publicExponent.hashCode(); in hashCode() 171 sb.append(publicExponent.toString(16)); in toString() 182 publicExponent.toByteArray(), in readObject()
|
D | OpenSSLRSAKeyFactory.java | 205 BigInteger publicExponent = rsaKey.getPublicExponent(); in engineTranslateKey() local 214 return engineGeneratePrivate(new RSAPrivateCrtKeySpec(modulus, publicExponent, in engineTranslateKey()
|
D | NativeCrypto.java | 116 static native long RSA_generate_key_ex(int modulusBits, byte[] publicExponent); in RSA_generate_key_ex() argument
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
D | RSAKeyGenerationParameters.java | 11 private BigInteger publicExponent; field in RSAKeyGenerationParameters 15 BigInteger publicExponent, in RSAKeyGenerationParameters() argument 30 if (!publicExponent.testBit(0)) in RSAKeyGenerationParameters() 35 this.publicExponent = publicExponent; in RSAKeyGenerationParameters() 41 return publicExponent; in getPublicExponent()
|
D | RSAPrivateCrtKeyParameters.java | 20 BigInteger publicExponent, in RSAPrivateCrtKeyParameters() argument 30 this.e = publicExponent; in RSAPrivateCrtKeyParameters()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
D | RSAPublicKey.java | 18 private BigInteger publicExponent; field in RSAPublicKey 45 BigInteger publicExponent) in RSAPublicKey() argument 48 this.publicExponent = publicExponent; in RSAPublicKey() 63 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue(); in RSAPublicKey() 73 return publicExponent; in getPublicExponent()
|
D | RSAPrivateKeyStructure.java | 22 private BigInteger publicExponent; field in RSAPrivateKeyStructure 55 BigInteger publicExponent, in RSAPrivateKeyStructure() argument 65 this.publicExponent = publicExponent; in RSAPrivateKeyStructure() 87 publicExponent = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure() 113 return publicExponent; in getPublicExponent()
|
D | RSAPrivateKey.java | 19 private BigInteger publicExponent; field in RSAPrivateKey 53 BigInteger publicExponent, in RSAPrivateKey() argument 63 this.publicExponent = publicExponent; in RSAPrivateKey() 85 publicExponent = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey() 111 return publicExponent; in getPublicExponent()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | RSAPublicKeyStructure.java | 21 private BigInteger publicExponent; field in RSAPublicKeyStructure 48 BigInteger publicExponent) in RSAPublicKeyStructure() argument 51 this.publicExponent = publicExponent; in RSAPublicKeyStructure() 66 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue(); in RSAPublicKeyStructure() 76 return publicExponent; in getPublicExponent()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
D | BCRSAPublicKey.java | 28 private BigInteger publicExponent; field in BCRSAPublicKey 36 this.publicExponent = key.getExponent(); in BCRSAPublicKey() 44 this.publicExponent = spec.getPublicExponent(); in BCRSAPublicKey() 52 this.publicExponent = key.getPublicExponent(); in BCRSAPublicKey() 69 this.publicExponent = pubKey.getPublicExponent(); in populateFromPublicKeyInfo() 94 return publicExponent; in getPublicExponent()
|
D | BCRSAPrivateCrtKey.java | 26 private BigInteger publicExponent; field in BCRSAPrivateCrtKey 43 this.publicExponent = key.getPublicExponent(); in BCRSAPrivateCrtKey() 60 this.publicExponent = spec.getPublicExponent(); in BCRSAPrivateCrtKey() 78 this.publicExponent = key.getPublicExponent(); in BCRSAPrivateCrtKey() 104 this.publicExponent = key.getPublicExponent(); in BCRSAPrivateCrtKey() 141 return publicExponent; in getPublicExponent()
|
/external/nos/host/android/hals/keymaster/ |
D | import_key.cpp | 69 const uint64_t *publicExponent = nullptr; in import_key_rsa() local 73 publicExponent = &v[0].f.longInteger; in import_key_rsa() 101 if (publicExponent != nullptr && BN_get_word(e) != *publicExponent) { in import_key_rsa() 104 << *publicExponent in import_key_rsa()
|
/external/scapy/test/ |
D | x509.uts | 28 x.publicExponent == ASN1_INTEGER(65537) 107 …24593710633552558175109683813482739004163) and spki.subjectPublicKey.publicExponent == ASN1_INTEGE…
|
/external/scapy/scapy/layers/tls/ |
D | cert.py | 294 pubExp = pubkey.publicExponent.val 482 pubExp = privkey.publicExponent.val
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 1329 jbyteArray publicExponent) { in NativeCrypto_RSA_generate_key_ex() argument 1331 JNI_TRACE("RSA_generate_key_ex(%d, %p)", modulusBits, publicExponent); in NativeCrypto_RSA_generate_key_ex() 1334 if (!arrayToBignum(env, publicExponent, &eRef)) { in NativeCrypto_RSA_generate_key_ex() 1363 JNI_TRACE("RSA_generate_key_ex(n=%d, e=%p) => %p", modulusBits, publicExponent, pkey.get()); in NativeCrypto_RSA_generate_key_ex()
|