Home
last modified time | relevance | path

Searched refs:publicExponent (Results 1 – 25 of 34) sorted by relevance

12

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLRSAPrivateCrtKey.java36 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 …]
DOpenSSLRSAKeyPairGenerator.java38 private byte[] publicExponent = new byte[] { field in OpenSSLRSAKeyPairGenerator
50 publicExponent)); in generateKeyPair()
72 final BigInteger publicExponent = spec.getPublicExponent(); in initialize() local
73 if (publicExponent != null) { in initialize()
74 this.publicExponent = publicExponent.toByteArray(); in initialize()
DOpenSSLRSAPublicKey.java38 private BigInteger publicExponent; field in OpenSSLRSAPublicKey
107 publicExponent = new BigInteger(params[1]); in ensureReadParams()
121 return publicExponent; in getPublicExponent()
150 && publicExponent.equals(other.getPublicExponent()); in equals()
157 return modulus.hashCode() ^ publicExponent.hashCode(); in hashCode()
169 sb.append(publicExponent.toString(16)); in toString()
180 publicExponent.toByteArray(), in readObject()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLRSAPrivateCrtKey.java37 private BigInteger publicExponent; field in OpenSSLRSAPrivateCrtKey
78 final BigInteger publicExponent = rsaKeySpec.getPublicExponent(); in init() local
87 publicExponent == null ? null : publicExponent.toByteArray(), in init()
124 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent(); in getInstance() local
133 publicExponent == null ? null : publicExponent.toByteArray(), in getInstance()
150 publicExponent = new BigInteger(params[1]); in readParams()
173 return publicExponent; in getPublicExponent()
222 && publicExponent.equals(other.getPublicExponent()) in equals()
242 if (publicExponent != null) { in hashCode()
243 hashCode ^= publicExponent.hashCode(); in hashCode()
[all …]
DOpenSSLRSAKeyPairGenerator.java41 private byte[] publicExponent = new byte[] { field in OpenSSLRSAKeyPairGenerator
56 publicExponent)); in generateKeyPair()
78 final BigInteger publicExponent = spec.getPublicExponent(); in initialize() local
79 if (publicExponent != null) { in initialize()
80 this.publicExponent = publicExponent.toByteArray(); in initialize()
DOpenSSLRSAPublicKey.java40 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()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DRSAKeyGenerationParameters.java11 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()
DRSAPrivateCrtKeyParameters.java20 BigInteger publicExponent, in RSAPrivateCrtKeyParameters() argument
30 this.e = publicExponent; in RSAPrivateCrtKeyParameters()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/params/
DRSAKeyGenerationParameters.java15 private BigInteger publicExponent; field in RSAKeyGenerationParameters
19 BigInteger publicExponent, in RSAKeyGenerationParameters() argument
34 if (!publicExponent.testBit(0)) in RSAKeyGenerationParameters()
39 this.publicExponent = publicExponent; in RSAKeyGenerationParameters()
45 return publicExponent; in getPublicExponent()
DRSAPrivateCrtKeyParameters.java24 BigInteger publicExponent, in RSAPrivateCrtKeyParameters() argument
34 this.e = publicExponent; in RSAPrivateCrtKeyParameters()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
DRSAPublicKey.java18 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()
DRSAPrivateKeyStructure.java22 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()
DRSAPrivateKey.java19 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/
DRSAPublicKeyStructure.java21 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/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
DRSAPublicKeyStructure.java23 private BigInteger publicExponent; field in RSAPublicKeyStructure
50 BigInteger publicExponent) in RSAPublicKeyStructure() argument
53 this.publicExponent = publicExponent; in RSAPublicKeyStructure()
68 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue(); in RSAPublicKeyStructure()
78 return publicExponent; in getPublicExponent()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/
DRSAPublicKey.java22 private BigInteger publicExponent; field in RSAPublicKey
49 BigInteger publicExponent) in RSAPublicKey() argument
52 this.publicExponent = publicExponent; in RSAPublicKey()
67 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue(); in RSAPublicKey()
77 return publicExponent; in getPublicExponent()
DRSAPrivateKey.java23 private BigInteger publicExponent; field in RSAPrivateKey
57 BigInteger publicExponent, in RSAPrivateKey() argument
67 this.publicExponent = publicExponent; in RSAPrivateKey()
89 publicExponent = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKey()
115 return publicExponent; in getPublicExponent()
DRSAPrivateKeyStructure.java24 private BigInteger publicExponent; field in RSAPrivateKeyStructure
57 BigInteger publicExponent, in RSAPrivateKeyStructure() argument
67 this.publicExponent = publicExponent; in RSAPrivateKeyStructure()
89 publicExponent = ((ASN1Integer)e.nextElement()).getValue(); in RSAPrivateKeyStructure()
115 return publicExponent; in getPublicExponent()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DBCRSAPublicKey.java26 private BigInteger publicExponent; field in BCRSAPublicKey
34 this.publicExponent = key.getExponent(); in BCRSAPublicKey()
42 this.publicExponent = spec.getPublicExponent(); in BCRSAPublicKey()
50 this.publicExponent = key.getPublicExponent(); in BCRSAPublicKey()
67 this.publicExponent = pubKey.getPublicExponent(); in populateFromPublicKeyInfo()
92 return publicExponent; in getPublicExponent()
DBCRSAPrivateCrtKey.java26 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/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DBCRSAPublicKey.java30 private BigInteger publicExponent; field in BCRSAPublicKey
38 this.publicExponent = key.getExponent(); in BCRSAPublicKey()
46 this.publicExponent = spec.getPublicExponent(); in BCRSAPublicKey()
54 this.publicExponent = key.getPublicExponent(); in BCRSAPublicKey()
71 this.publicExponent = pubKey.getPublicExponent(); in populateFromPublicKeyInfo()
96 return publicExponent; in getPublicExponent()
DBCRSAPrivateCrtKey.java28 private BigInteger publicExponent; field in BCRSAPrivateCrtKey
45 this.publicExponent = key.getPublicExponent(); in BCRSAPrivateCrtKey()
62 this.publicExponent = spec.getPublicExponent(); in BCRSAPrivateCrtKey()
80 this.publicExponent = key.getPublicExponent(); in BCRSAPrivateCrtKey()
106 this.publicExponent = key.getPublicExponent(); in BCRSAPrivateCrtKey()
143 return publicExponent; in getPublicExponent()
/external/nos/host/android/hals/keymaster/
Dimport_key.cpp69 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/python/pyasn1/docs/source/pyasn1/type/namedtype/
Dcontents.rst26 publicExponent INTEGER -- e
31 NamedType('publicExponent', Integer())
/external/python/pyasn1/docs/source/
Dexample-use-case.rst28 publicExponent INTEGER,
76 NamedType('publicExponent', Integer()),
117 publicExponent=65537
159 {'version': 0, 'modulus': 280789907761334970323210643584308373, 'publicExponent': 65537,

12