Searched defs:getPublicExponent (Results 1 - 9 of 9) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DRSAPublicKeyStructure.java71 public BigInteger getPublicExponent() method in class:RSAPublicKeyStructure
91 v.add(new DERInteger(getPublicExponent()));
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
H A DRSAKeyGenerationParameters.java39 public BigInteger getPublicExponent() method in class:RSAKeyGenerationParameters
H A DRSAPrivateCrtKeyParameters.java38 public BigInteger getPublicExponent() method in class:RSAPrivateCrtKeyParameters
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
H A DRSAPublicKeyTest.java71 public BigInteger getPublicExponent() { method in class:RSAPublicKeyTest.checkRSAPublicKey
H A DRSAMultiPrimePrivateCrtKeyTest.java81 public BigInteger getPublicExponent() { method in class:RSAMultiPrimePrivateCrtKeyTest.checkCrtKey
H A DRSAPrivateCrtKeyTest.java82 public BigInteger getPublicExponent() { method in class:RSAPrivateCrtKeyTest.checkRSAPrivateCrtKey
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPublicKey.java35 this.publicExponent = spec.getPublicExponent();
42 this.publicExponent = key.getPublicExponent();
53 this.publicExponent = pubKey.getPublicExponent();
76 public BigInteger getPublicExponent() method in class:JCERSAPublicKey
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);
H A DJCERSAPrivateCrtKey.java41 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() method in class:JCERSAPrivateCrtKey
198 ^ this.getPublicExponent().hashCode()
217 && this.getPublicExponent().equals(key.getPublicExponent())
233 buf.append(" public exponent: ").append(this.getPublicExponent()
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRSAPrivateKeyStructure.java108 public BigInteger getPublicExponent() method in class:RSAPrivateKeyStructure
171 v.add(new DERInteger(getPublicExponent()));

Completed in 510 milliseconds