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

1 2 3

  /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;
  /libcore/ojluni/src/main/java/java/security/spec/
RSAKeyGenParameterSpec.java 45 private BigInteger publicExponent;
62 * @param publicExponent the public exponent
64 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) {
66 this.publicExponent = publicExponent;
84 return publicExponent;
RSAPublicKeySpec.java 47 private BigInteger publicExponent;
53 * @param publicExponent the public exponent
55 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) {
57 this.publicExponent = publicExponent;
75 return this.publicExponent;
RSAMultiPrimePrivateCrtKeySpec.java 51 private final BigInteger publicExponent;
61 * given the modulus, publicExponent, privateExponent,
70 * @param publicExponent the public exponent e.
82 * {@code publicExponent}, {@code privateExponent},
90 BigInteger publicExponent,
103 if (publicExponent == null) {
104 throw new NullPointerException("the publicExponent parameter " +
131 this.publicExponent = publicExponent;
153 return this.publicExponent;
    [all...]
RSAPrivateCrtKeySpec.java 48 private final BigInteger publicExponent;
59 * given the modulus, publicExponent, privateExponent,
64 * @param publicExponent the public exponent e
74 BigInteger publicExponent,
82 this.publicExponent = publicExponent;
96 return this.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/common/src/main/java/org/conscrypt/
OpenSSLRSAKeyPairGenerator.java 40 private byte[] publicExponent = new byte[] {
52 publicExponent));
74 final BigInteger publicExponent = spec.getPublicExponent();
75 if (publicExponent != null) {
76 this.publicExponent = publicExponent.toByteArray();
OpenSSLRSAKeyFactory.java 205 BigInteger publicExponent = rsaKey.getPublicExponent();
214 return engineGeneratePrivate(new RSAPrivateCrtKeySpec(modulus, publicExponent,
OpenSSLRSAPublicKey.java 40 private BigInteger publicExponent;
109 publicExponent = new BigInteger(params[1]);
123 return publicExponent;
152 && publicExponent.equals(other.getPublicExponent());
159 return modulus.hashCode() ^ publicExponent.hashCode();
170 sb.append("publicExponent=");
171 sb.append(publicExponent.toString(16));
182 publicExponent.toByteArray(),
OpenSSLRSAPrivateCrtKey.java 36 private BigInteger publicExponent;
77 final BigInteger publicExponent = rsaKeySpec.getPublicExponent();
86 publicExponent == null ? null : publicExponent.toByteArray(),
123 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent();
132 publicExponent == null ? null : publicExponent.toByteArray(),
149 publicExponent = new BigInteger(params[1]);
172 return publicExponent;
221 && publicExponent.equals(other.getPublicExponent()
    [all...]
  /external/nos/host/android/hals/keymaster/
import_key.cpp 69 const uint64_t *publicExponent = nullptr;
73 publicExponent = &v[0].f.longInteger;
101 if (publicExponent != nullptr && BN_get_word(e) != *publicExponent) {
103 LOG(ERROR) << "ImportKey request: invalid publicExponent tag: "
104 << *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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPrivateCrtKey.java 26 private BigInteger publicExponent;
43 this.publicExponent = key.getPublicExponent();
60 this.publicExponent = spec.getPublicExponent();
78 this.publicExponent = key.getPublicExponent();
104 this.publicExponent = key.getPublicExponent();
141 return publicExponent;
BCRSAPublicKey.java 28 private BigInteger publicExponent;
36 this.publicExponent = key.getExponent();
44 this.publicExponent = spec.getPublicExponent();
52 this.publicExponent = key.getPublicExponent();
69 this.publicExponent = pubKey.getPublicExponent();
94 return publicExponent;
  /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,
  /frameworks/base/keystore/java/android/security/keystore/
ParcelableKeyGenParameterSpec.java 135 BigInteger publicExponent = new BigInteger(in.createByteArray());
136 algorithmSpec = new RSAKeyGenParameterSpec(rsaKeySize, publicExponent);
AndroidKeyStoreKeyPairGeneratorSpi.java 386 BigInteger publicExponent = null;
396 publicExponent = rsaSpec.getPublicExponent();
401 if (publicExponent == null) {
402 publicExponent = RSAKeyGenParameterSpec.F4;
404 if (publicExponent.compareTo(BigInteger.ZERO) < 1) {
406 "RSA public exponent must be positive: " + publicExponent);
408 if (publicExponent.compareTo(KeymasterArguments.UINT64_MAX_VALUE) > 0) {
410 "Unsupported RSA public exponent: " + publicExponent
413 mRSAPublicExponent = publicExponent;
    [all...]
  /prebuilts/tools/common/m2/repository/com/braintreepayments/encryption/2.1.0/
encryption-2.1.0.jar 
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 1539 milliseconds

1 2 3