HomeSort by relevance Sort by last modified time
    Searched defs:publicExponent (Results 1 - 21 of 21) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RSAKeyGenerationParameters.java 11 private BigInteger publicExponent;
15 BigInteger publicExponent,
30 if (!publicExponent.testBit(0))
35 this.publicExponent = publicExponent;
41 return publicExponent;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSAPublicKey.java 18 private BigInteger publicExponent;
45 BigInteger publicExponent)
48 this.publicExponent = publicExponent;
63 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue();
73 return publicExponent;
81 * publicExponent INTEGER, -- e
RSAPrivateKey.java 19 private BigInteger publicExponent;
53 BigInteger publicExponent,
63 this.publicExponent = publicExponent;
85 publicExponent = ((ASN1Integer)e.nextElement()).getValue();
111 return publicExponent;
150 * publicExponent INTEGER, -- e
RSAPrivateKeyStructure.java 22 private BigInteger publicExponent;
55 BigInteger publicExponent,
65 this.publicExponent = publicExponent;
87 publicExponent = ((ASN1Integer)e.nextElement()).getValue();
113 return publicExponent;
152 * publicExponent INTEGER, -- e
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
RSAPublicKeyStructure.java 21 private BigInteger publicExponent;
48 BigInteger publicExponent)
51 this.publicExponent = publicExponent;
66 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue();
76 return publicExponent;
84 * publicExponent INTEGER, -- e
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLRSAKeyPairGenerator.java 33 private byte[] publicExponent = new byte[] {
45 publicExponent));
67 final BigInteger publicExponent = spec.getPublicExponent();
68 if (publicExponent != null) {
69 this.publicExponent = publicExponent.toByteArray();
OpenSSLRSAKeyFactory.java 182 BigInteger publicExponent = rsaKey.getPublicExponent();
191 return engineGeneratePrivate(new RSAPrivateCrtKeySpec(modulus, publicExponent,
OpenSSLRSAPublicKey.java 33 private BigInteger publicExponent;
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(),
OpenSSLRSAPrivateCrtKey.java 33 private BigInteger publicExponent;
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.equals(other.getPublicExponent())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPublicKey.java 23 private BigInteger publicExponent;
29 this.publicExponent = key.getExponent();
36 this.publicExponent = spec.getPublicExponent();
43 this.publicExponent = key.getPublicExponent();
54 this.publicExponent = pubKey.getPublicExponent();
79 return publicExponent;
JCERSAPrivateCrtKey.java 25 private BigInteger publicExponent;
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/public/platform/
WebCryptoKeyAlgorithmParams.h 132 WebCryptoRsaHashedKeyAlgorithmParams(unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, const WebCryptoAlgorithm& hash)
134 , m_publicExponent(publicExponent, publicExponentSize)
144 const WebVector<unsigned char>& publicExponent() const
163 dict->setUint8Array("publicExponent", m_publicExponent);
WebCryptoAlgorithmParams.h 196 explicit WebCryptoRsaHashedKeyGenParams(const WebCryptoAlgorithm& hash, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize)
198 , m_publicExponent(publicExponent, publicExponentSize)
207 const WebVector<unsigned char>& publicExponent() const { return m_publicExponent; }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPrivateCrtKey.java 25 private BigInteger publicExponent;
42 this.publicExponent = key.getPublicExponent();
59 this.publicExponent = spec.getPublicExponent();
77 this.publicExponent = key.getPublicExponent();
103 this.publicExponent = key.getPublicExponent();
140 return publicExponent;
BCRSAPublicKey.java 26 private BigInteger publicExponent;
34 this.publicExponent = key.getExponent();
42 this.publicExponent = spec.getPublicExponent();
50 this.publicExponent = key.getPublicExponent();
67 this.publicExponent = pubKey.getPublicExponent();
92 return publicExponent;
  /device/asus/grouper/keymaster/
keymaster_grouper.cpp 356 CK_BYTE publicExponent[sizeof(uint64_t)];
358 size_t offset = sizeof(publicExponent) - 1;
359 for (size_t i = 0; i < sizeof(publicExponent); i++) {
360 publicExponent[offset--] = (exp >> (i * CHAR_BIT)) & 0xFF;
375 {CKA_PUBLIC_EXPONENT, publicExponent, sizeof(publicExponent)},
450 Unique_ByteArray publicExponent(bignum_to_array(rsa->e));
451 if (publicExponent.get() == NULL) {
452 ALOGW("Could not convert publicExponent to array");
474 {CKA_PUBLIC_EXPONENT, publicExponent->get(), publicExponent->length()}
    [all...]
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 356 CK_BYTE publicExponent[sizeof(uint64_t)];
358 size_t offset = sizeof(publicExponent) - 1;
359 for (size_t i = 0; i < sizeof(publicExponent); i++) {
360 publicExponent[offset--] = (exp >> (i * CHAR_BIT)) & 0xFF;
375 {CKA_PUBLIC_EXPONENT, publicExponent, sizeof(publicExponent)},
450 Unique_ByteArray publicExponent(bignum_to_array(rsa->e));
451 if (publicExponent.get() == NULL) {
452 ALOGW("Could not convert publicExponent to array");
474 {CKA_PUBLIC_EXPONENT, publicExponent->get(), publicExponent->length()}
    [all...]
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 356 CK_BYTE publicExponent[sizeof(uint64_t)];
358 size_t offset = sizeof(publicExponent) - 1;
359 for (size_t i = 0; i < sizeof(publicExponent); i++) {
360 publicExponent[offset--] = (exp >> (i * CHAR_BIT)) & 0xFF;
375 {CKA_PUBLIC_EXPONENT, publicExponent, sizeof(publicExponent)},
450 Unique_ByteArray publicExponent(bignum_to_array(rsa->e));
451 if (publicExponent.get() == NULL) {
452 ALOGW("Could not convert publicExponent to array");
474 {CKA_PUBLIC_EXPONENT, publicExponent->get(), publicExponent->length()}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
SerializedScriptValue.cpp 225 // 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());
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 2079 milliseconds