HomeSort by relevance Sort by last modified time
    Searched refs:publicExponent (Results 1 - 25 of 58) sorted by null

1 2 3

  /libcore/luni/src/main/java/java/security/spec/
RSAPublicKeySpec.java 33 private final BigInteger publicExponent;
41 * @param publicExponent
44 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) {
46 this.publicExponent = publicExponent;
64 return publicExponent;
RSAKeyGenParameterSpec.java 40 private final BigInteger publicExponent;
48 * @param publicExponent
51 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) {
53 this.publicExponent = publicExponent;
71 return publicExponent;
RSAPrivateCrtKeySpec.java 32 private final BigInteger publicExponent;
51 * @param publicExponent
67 BigInteger publicExponent,
77 this.publicExponent = publicExponent;
136 return publicExponent;
RSAMultiPrimePrivateCrtKeySpec.java 32 private final BigInteger publicExponent;
53 * @param publicExponent
75 BigInteger publicExponent,
93 if (publicExponent == null) {
94 throw new NullPointerException("publicExponent == null");
123 this.publicExponent = publicExponent;
200 return publicExponent;
  /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;
RSAPrivateCrtKeyParameters.java 20 BigInteger publicExponent,
30 this.e = 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();
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);
WebCryptoKeyAlgorithm.h 64 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash);
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; }
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/interfaces/
RSAMultiPrimePrivateCrtKeyImpl.java 32 private BigInteger publicExponent = null;
46 publicExponent = publicExp;
74 return publicExponent;
  /external/chromium_org/content/child/webcrypto/
structured_clone.cc 81 if (algorithm.rsaHashedParams()->publicExponent().size() !=
82 key.algorithm().rsaHashedParams()->publicExponent().size())
84 if (memcmp(algorithm.rsaHashedParams()->publicExponent().data(),
85 key.algorithm().rsaHashedParams()->publicExponent().data(),
86 key.algorithm().rsaHashedParams()->publicExponent().size()) !=
  /libcore/luni/src/test/java/tests/security/interfaces/
RSAMultiPrimePrivateCrtKeyTest.java 38 private final BigInteger publicExponent = BigInteger.ONE;
66 RSAMulti rsam = new RSAMulti(publicExponent, primeExponentP, primeExponentQ,
74 assertEquals(rsam.getPublicExponent(), publicExponent);
84 RSAMulti rsam = new RSAMulti(publicExponent, primeExponentP, primeExponentQ,
91 rsam = new RSAMulti(publicExponent, primeExponentP, primeExponentQ,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
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;
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;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoKeyAlgorithm.cpp 83 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createRsaHashed(WebCryptoAlgorithmId id, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash)
88 return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoRsaHashedKeyAlgorithmParams(modulusLengthBits, publicExponent, publicExponentSize, createHash(hash))));
  /external/chromium_org/chrome/renderer/resources/extensions/enterprise_platform_keys/
subtle_crypto.js 105 // normalizeAlgorithm returns an array, but publicExponent should be a
107 normalizedAlgorithmParameters.publicExponent =
108 new Uint8Array(normalizedAlgorithmParameters.publicExponent);
112 normalizedAlgorithmParameters.publicExponent)) {

Completed in 750 milliseconds

1 2 3