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

1 2

  /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/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/src/main/java/org/bouncycastle/asn1/x509/
RSAPublicKeyStructure.java 18 private BigInteger publicExponent;
45 BigInteger publicExponent)
48 this.publicExponent = publicExponent;
63 publicExponent = DERInteger.getInstance(e.nextElement()).getPositiveValue();
73 return publicExponent;
81 * publicExponent INTEGER, -- e
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
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();
OpenSSLRSAPrivateCrtKey.java 27 private BigInteger publicExponent;
68 final BigInteger publicExponent = rsaKeySpec.getPublicExponent();
77 publicExponent == null ? null : publicExponent.toByteArray(),
106 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent();
115 publicExponent == null ? null : publicExponent.toByteArray(),
132 publicExponent = new BigInteger(params[1]);
155 return publicExponent;
211 && publicExponent.equals(other.getPublicExponent()
    [all...]
OpenSSLRSAPublicKey.java 30 private BigInteger publicExponent;
98 publicExponent = new BigInteger(params[1]);
112 return publicExponent;
141 && publicExponent.equals(other.getPublicExponent());
148 return modulus.hashCode() ^ publicExponent.hashCode();
159 sb.append("publicExponent=");
160 sb.append(publicExponent.toString(16));
OpenSSLRSAKeyFactory.java 100 BigInteger publicExponent = rsaKey.getPublicExponent();
101 return (T) new RSAPublicKeySpec(modulus, publicExponent);
116 BigInteger publicExponent = rsaKey.getPublicExponent();
123 return (T) new RSAPrivateCrtKeySpec(modulus, publicExponent, privateExponent,
172 BigInteger publicExponent = rsaKey.getPublicExponent();
181 return engineGeneratePrivate(new RSAPrivateCrtKeySpec(modulus, publicExponent,
NativeCrypto.java 85 public static native int RSA_generate_key_ex(int modulusBits, byte[] publicExponent);
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCERSAPublicKey.java 22 private BigInteger publicExponent;
28 this.publicExponent = key.getExponent();
35 this.publicExponent = spec.getPublicExponent();
42 this.publicExponent = key.getPublicExponent();
53 this.publicExponent = pubKey.getPublicExponent();
78 return publicExponent;
JCERSAPrivateCrtKey.java 24 private BigInteger publicExponent;
41 this.publicExponent = key.getPublicExponent();
58 this.publicExponent = spec.getPublicExponent();
76 this.publicExponent = key.getPublicExponent();
101 this.publicExponent = key.getPublicExponent();
142 return publicExponent;
  /external/openssh/regress/
ssh2putty.sh 22 openssl rsa -noout -text -in $KEYFILE | grep ^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;
  /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/src/main/java/org/bouncycastle/asn1/pkcs/
RSAPrivateKeyStructure.java 19 private BigInteger publicExponent;
52 BigInteger publicExponent,
62 this.publicExponent = publicExponent;
84 publicExponent = ((DERInteger)e.nextElement()).getValue();
110 return publicExponent;
149 * publicExponent INTEGER, -- e
  /device/samsung/tuna/keymaster/
keymaster_tuna.cpp 352 CK_BYTE publicExponent[sizeof(uint64_t)];
354 size_t offset = sizeof(publicExponent) - 1;
355 for (size_t i = 0; i < sizeof(publicExponent); i++) {
356 publicExponent[offset--] = (exp >> (i * CHAR_BIT)) & 0xFF;
371 {CKA_PUBLIC_EXPONENT, publicExponent, sizeof(publicExponent)},
446 Unique_ByteArray publicExponent(bignum_to_array(rsa->e));
447 if (publicExponent.get() == NULL) {
448 ALOGW("Could not convert publicExponent to array");
470 {CKA_PUBLIC_EXPONENT, publicExponent->get(), publicExponent->length()}
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 974 * public static native int RSA_generate_key(int modulusBits, byte[] publicExponent);
977 jbyteArray publicExponent) {
978 JNI_TRACE("RSA_generate_key_ex(%d, %p)", modulusBits, publicExponent);
981 if (!arrayToBignum(env, publicExponent, &eRef)) {
1009 JNI_TRACE("RSA_generate_key_ex(n=%d, e=%p) => %p", modulusBits, publicExponent, pkey.get());
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 439 milliseconds

1 2