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

1 2

  /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/src/main/java/org/bouncycastle/jce/provider/
JCERSAPublicKey.java 35 this.publicExponent = spec.getPublicExponent();
42 this.publicExponent = key.getPublicExponent();
53 this.publicExponent = pubKey.getPublicExponent();
76 public BigInteger getPublicExponent()
94 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()).getDERObject());
102 return this.getModulus().hashCode() ^ this.getPublicExponent().hashCode();
120 && getPublicExponent().equals(key.getPublicExponent());
130 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
JCERSAPrivateCrtKey.java 41 this.publicExponent = key.getPublicExponent();
58 this.publicExponent = spec.getPublicExponent();
76 this.publicExponent = key.getPublicExponent();
101 this.publicExponent = key.getPublicExponent();
129 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKeyStructure(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()).getDERObject());
140 public BigInteger getPublicExponent()
198 ^ this.getPublicExponent().hashCode()
217 && this.getPublicExponent().equals(key.getPublicExponent())
233 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl)
    [all...]
RSAUtil.java 31 return new RSAKeyParameters(false, key.getModulus(), key.getPublicExponent());
43 k.getPublicExponent(), k.getPrivateExponent(),
  /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() {
RSAMultiPrimePrivateCrtKeySpec.java 199 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/src/main/java/org/bouncycastle/crypto/params/
RSAKeyGenerationParameters.java 39 public BigInteger getPublicExponent()
RSAPrivateCrtKeyParameters.java 38 public BigInteger getPublicExponent()
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
RSAPublicKeyStructure.java 71 public BigInteger getPublicExponent()
91 v.add(new DERInteger(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());
RSAPublicKeySpecTest.java 82 * Test for <code>getPublicExponent()</code> method<br>
89 assertTrue(BigInteger.valueOf(1234567890L).equals(rpks.getPublicExponent()));
  /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()));
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/interfaces/
RSAMultiPrimePrivateCrtKeyImpl.java 73 public BigInteger getPublicExponent() {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
RSAPrivateKeyStructure.java 108 public BigInteger getPublicExponent()
171 v.add(new DERInteger(getPublicExponent()));
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RSABlindedEngine.java 102 BigInteger e = k.getPublicExponent();

Completed in 457 milliseconds

1 2