Searched defs:publicExponent (Results 1 - 23 of 23) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLRSAKeyPairGenerator.java33 private byte[] publicExponent = new byte[] { field in class:OpenSSLRSAKeyPairGenerator
45 publicExponent));
67 final BigInteger publicExponent = spec.getPublicExponent();
68 if (publicExponent != null) {
69 this.publicExponent = publicExponent.toByteArray();
H A DOpenSSLRSAPublicKey.java33 private BigInteger publicExponent; field in class:OpenSSLRSAPublicKey
102 publicExponent = new BigInteger(params[1]);
116 return publicExponent;
145 && publicExponent.equals(other.getPublicExponent());
152 return modulus.hashCode() ^ publicExponent.hashCode();
163 sb.append("publicExponent=");
164 sb.append(publicExponent.toString(16));
175 publicExponent.toByteArray(),
H A DOpenSSLRSAPrivateCrtKey.java33 private BigInteger publicExponent; field in class:OpenSSLRSAPrivateCrtKey
74 final BigInteger publicExponent = rsaKeySpec.getPublicExponent();
83 publicExponent == null ? null : publicExponent.toByteArray(),
120 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent();
129 publicExponent == null ? null : publicExponent.toByteArray(),
146 publicExponent = new BigInteger(params[1]);
169 return publicExponent;
219 && publicExponent
[all...]
H A DNativeCrypto.java124 public static native long RSA_generate_key_ex(int modulusBits, byte[] publicExponent); argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRSAPublicKey.java18 private BigInteger publicExponent; field in class:RSAPublicKey
45 BigInteger publicExponent)
48 this.publicExponent = publicExponent;
63 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue();
73 return publicExponent;
81 * publicExponent INTEGER, -- e
43 RSAPublicKey( BigInteger modulus, BigInteger publicExponent) argument
H A DRSAPrivateKey.java19 private BigInteger publicExponent; field in class:RSAPrivateKey
53 BigInteger publicExponent,
63 this.publicExponent = publicExponent;
85 publicExponent = ((ASN1Integer)e.nextElement()).getValue();
111 return publicExponent;
150 * publicExponent INTEGER, -- e
51 RSAPrivateKey( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient) argument
H A DRSAPrivateKeyStructure.java22 private BigInteger publicExponent; field in class:RSAPrivateKeyStructure
55 BigInteger publicExponent,
65 this.publicExponent = publicExponent;
87 publicExponent = ((ASN1Integer)e.nextElement()).getValue();
113 return publicExponent;
152 * publicExponent INTEGER, -- e
53 RSAPrivateKeyStructure( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DRSAPublicKeyStructure.java21 private BigInteger publicExponent; field in class:RSAPublicKeyStructure
48 BigInteger publicExponent)
51 this.publicExponent = publicExponent;
66 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue();
76 return publicExponent;
84 * publicExponent INTEGER, -- e
46 RSAPublicKeyStructure( BigInteger modulus, BigInteger publicExponent) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DRSAKeyGenerationParameters.java11 private BigInteger publicExponent; field in class:RSAKeyGenerationParameters
15 BigInteger publicExponent,
30 if (!publicExponent.testBit(0))
35 this.publicExponent = publicExponent;
41 return publicExponent;
14 RSAKeyGenerationParameters( BigInteger publicExponent, SecureRandom random, int strength, int certainty) argument
H A DRSAPrivateCrtKeyParameters.java20 BigInteger publicExponent,
30 this.e = publicExponent;
18 RSAPrivateCrtKeyParameters( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger p, BigInteger q, BigInteger dP, BigInteger dQ, BigInteger qInv) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPublicKey.java23 private BigInteger publicExponent; field in class:JCERSAPublicKey
29 this.publicExponent = key.getExponent();
36 this.publicExponent = spec.getPublicExponent();
43 this.publicExponent = key.getPublicExponent();
54 this.publicExponent = pubKey.getPublicExponent();
79 return publicExponent;
H A DJCERSAPrivateCrtKey.java25 private BigInteger publicExponent; field in class:JCERSAPrivateCrtKey
42 this.publicExponent = key.getPublicExponent();
59 this.publicExponent = spec.getPublicExponent();
77 this.publicExponent = key.getPublicExponent();
103 this.publicExponent = key.getPublicExponent();
140 return publicExponent;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCryptoKeyAlgorithm.cpp83 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createRsaHashed(WebCryptoAlgorithmId id, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash) argument
88 return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoRsaHashedKeyAlgorithmParams(modulusLengthBits, publicExponent, publicExponentSize, createHash(hash))));
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCryptoKeyAlgorithmParams.h132 WebCryptoRsaHashedKeyAlgorithmParams(unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, const WebCryptoAlgorithm& hash) argument
134 , m_publicExponent(publicExponent, publicExponentSize)
144 const WebVector<unsigned char>& publicExponent() const function in class:blink::WebCryptoRsaHashedKeyAlgorithmParams
163 dict->setUint8Array("publicExponent", m_publicExponent);
H A DWebCryptoAlgorithmParams.h196 explicit WebCryptoRsaHashedKeyGenParams(const WebCryptoAlgorithm& hash, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize) argument
198 , m_publicExponent(publicExponent, publicExponentSize)
207 const WebVector<unsigned char>& publicExponent() const { return m_publicExponent; } function in class:blink::WebCryptoRsaHashedKeyGenParams
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateCrtKey.java25 private BigInteger publicExponent; field in class:BCRSAPrivateCrtKey
42 this.publicExponent = key.getPublicExponent();
59 this.publicExponent = spec.getPublicExponent();
77 this.publicExponent = key.getPublicExponent();
103 this.publicExponent = key.getPublicExponent();
140 return publicExponent;
H A DBCRSAPublicKey.java26 private BigInteger publicExponent; field in class:BCRSAPublicKey
34 this.publicExponent = key.getExponent();
42 this.publicExponent = spec.getPublicExponent();
50 this.publicExponent = key.getPublicExponent();
67 this.publicExponent = pubKey.getPublicExponent();
92 return publicExponent;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp225 // props = algorithmId:uint32_t, type:uint32_t, modulusLengthBits:uint32_t, publicExponentLength:uint32_t, publicExponent:byte[publicExponentLength], hashId:uint32_t
752 doWriteUint32(params->publicExponent().size());
753 append(params->publicExponent().data(), params->publicExponent().size());
2454 const uint8_t* publicExponent = m_buffer + m_position; local
2460 algorithm = blink::WebCryptoKeyAlgorithm::createRsaHashed(id, modulusLengthBits, publicExponent, publicExponentSize, hash);
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3con.c1206 SECItem modulus, SECItem publicExponent,
1216 bufLen = 2*SSL3_RANDOM_LENGTH + 2 + modulus.len + 2 + publicExponent.len;
1235 pBuf[0] = (PRUint8)(publicExponent.len >> 8);
1236 pBuf[1] = (PRUint8)(publicExponent.len);
1238 memcpy(pBuf, publicExponent.data, publicExponent.len);
1239 pBuf += publicExponent.len;
6906 SECITEM_CopyItem(arena, &peerKey->u.rsa.publicExponent, &exponent))
9221 sdPub->u.rsa.publicExponent,
9242 2 + sdPub->u.rsa.publicExponent
1205 ssl3_ComputeExportRSAKeyHash(SECOidTag hashAlg, SECItem modulus, SECItem publicExponent, SSL3Random *client_rand, SSL3Random *server_rand, SSL3Hashes *hashes, PRBool bypassPKCS11) argument
[all...]
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp2655 * public static native int RSA_generate_key(int modulusBits, byte[] publicExponent);
2658 jbyteArray publicExponent) {
2659 JNI_TRACE("RSA_generate_key_ex(%d, %p)", modulusBits, publicExponent);
2662 if (!arrayToBignum(env, publicExponent, &eRef)) {
2690 JNI_TRACE("RSA_generate_key_ex(n=%d, e=%p) => %p", modulusBits, publicExponent, pkey.get());
2657 NativeCrypto_RSA_generate_key_ex(JNIEnv* env, jclass, jint modulusBits, jbyteArray publicExponent) argument
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 525 milliseconds