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

1 2 3

  /libcore/luni/src/main/java/java/security/interfaces/
RSAPublicKey.java 38 public BigInteger getPublicExponent();
RSAMultiPrimePrivateCrtKey.java 83 public BigInteger getPublicExponent();
RSAPrivateCrtKey.java 72 public BigInteger getPublicExponent();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPublicKey.java 34 this.publicExponent = spec.getPublicExponent();
41 this.publicExponent = key.getPublicExponent();
52 this.publicExponent = pubKey.getPublicExponent();
75 public BigInteger getPublicExponent()
92 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPublicKey(getModulus(), getPublicExponent()));
97 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
115 && getPublicExponent().equals(key.getPublicExponent());
125 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
BCRSAPrivateCrtKey.java 42 this.publicExponent = key.getPublicExponent();
59 this.publicExponent = spec.getPublicExponent();
77 this.publicExponent = key.getPublicExponent();
103 this.publicExponent = key.getPublicExponent();
130 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
138 public BigInteger getPublicExponent()
196 ^ this.getPublicExponent().hashCode()
215 && this.getPublicExponent().equals(key.getPublicExponent())
231 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl)
    [all...]
RSAUtil.java 44 return new RSAKeyParameters(false, key.getModulus(), key.getPublicExponent());
56 k.getPublicExponent(), k.getPrivateExponent(),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPublicKey.java 36 this.publicExponent = spec.getPublicExponent();
43 this.publicExponent = key.getPublicExponent();
54 this.publicExponent = pubKey.getPublicExponent();
77 public BigInteger getPublicExponent()
94 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()));
99 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
117 && getPublicExponent().equals(key.getPublicExponent());
127 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
JCERSAPrivateCrtKey.java 42 this.publicExponent = key.getPublicExponent();
59 this.publicExponent = spec.getPublicExponent();
77 this.publicExponent = key.getPublicExponent();
103 this.publicExponent = key.getPublicExponent();
130 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
138 public BigInteger getPublicExponent()
196 ^ this.getPublicExponent().hashCode()
215 && this.getPublicExponent().equals(key.getPublicExponent())
231 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl)
    [all...]
  /libcore/luni/src/main/java/java/security/spec/
RSAPublicKeySpec.java 63 public BigInteger getPublicExponent() {
RSAKeyGenParameterSpec.java 70 public BigInteger getPublicExponent() {
RSAPrivateCrtKeySpec.java 135 public BigInteger getPublicExponent() {
  /libcore/luni/src/test/java/tests/security/interfaces/
RSAPrivateCrtKeyTest.java 80 * #getPublicExponent()
84 Util.rsaCrtParam.getPublicExponent(), key.getPublicExponent());
RSAPublicKeyTest.java 29 * #getPublicExponent()
37 assertEquals("invalid public exponent", e, key.getPublicExponent());
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
RSAPublicKeyTest.java 71 public BigInteger getPublicExponent() {
RSAMultiPrimePrivateCrtKeyTest.java 81 public BigInteger getPublicExponent() {
RSAPrivateCrtKeyTest.java 82 public BigInteger getPublicExponent() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RSAKeyGenerationParameters.java 39 public BigInteger getPublicExponent()
RSAPrivateCrtKeyParameters.java 38 public BigInteger getPublicExponent()
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLRSAPublicKey.java 52 spec.getPublicExponent().toByteArray(),
68 rsaPublicKey.getPublicExponent().toByteArray(),
114 public BigInteger getPublicExponent() {
145 && publicExponent.equals(other.getPublicExponent());
OpenSSLRSAKeyFactory.java 88 return (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent());
96 return (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent());
100 return (T) new RSAPrivateCrtKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent(),
123 rsaKey.getPublicExponent(), rsaKey.getPrivateExponent(),
175 rsaKey.getPublicExponent()));
182 BigInteger publicExponent = rsaKey.getPublicExponent();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSAPublicKey.java 71 public BigInteger getPublicExponent()
91 v.add(new ASN1Integer(getPublicExponent()));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
RSAPublicKeyStructure.java 74 public BigInteger getPublicExponent()
94 v.add(new ASN1Integer(getPublicExponent()));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
RSAKeyGenParameterSpecTest.java 66 * Test for <code>getPublicExponent()</code> method<br>
72 assertEquals(0, rkgps.getPublicExponent().intValue());
  /libcore/luni/src/test/java/tests/security/spec/
RSAKeyGenParameterSpecTest.java 59 * Test for <code>getPublicExponent()</code> method<br>
65 assertEquals(0, rkgps.getPublicExponent().intValue());
RSAPublicKeySpecTest.java 74 * Test for <code>getPublicExponent()</code> method<br>
81 assertTrue(BigInteger.valueOf(1234567890L).equals(rpks.getPublicExponent()));

Completed in 904 milliseconds

1 2 3