/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
H A D | RSAKeyGenerationParameters.java | 11 private BigInteger publicExponent; field in class:RSAKeyGenerationParameters 15 BigInteger publicExponent, 30 if (!publicExponent.testBit(0)) 35 this.publicExponent = publicExponent; 41 return publicExponent; 14 RSAKeyGenerationParameters( BigInteger publicExponent, SecureRandom random, int strength, int certainty) argument
|
H A D | RSAPrivateCrtKeyParameters.java | 20 BigInteger publicExponent, 30 this.e = publicExponent; 18 RSAPrivateCrtKeyParameters( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger p, BigInteger q, BigInteger dP, BigInteger dQ, BigInteger qInv) argument
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
H A D | RSAPublicKey.java | 18 private BigInteger publicExponent; field in class:RSAPublicKey 45 BigInteger publicExponent) 48 this.publicExponent = publicExponent; 63 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue(); 73 return publicExponent; 81 * publicExponent INTEGER, -- e 43 RSAPublicKey( BigInteger modulus, BigInteger publicExponent) argument
|
H A D | RSAPrivateKey.java | 19 private BigInteger publicExponent; field in class:RSAPrivateKey 53 BigInteger publicExponent, 63 this.publicExponent = publicExponent; 85 publicExponent = ((ASN1Integer)e.nextElement()).getValue(); 111 return publicExponent; 150 * publicExponent INTEGER, -- e 51 RSAPrivateKey( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient) argument
|
H A D | RSAPrivateKeyStructure.java | 22 private BigInteger publicExponent; field in class:RSAPrivateKeyStructure 55 BigInteger publicExponent, 65 this.publicExponent = publicExponent; 87 publicExponent = ((ASN1Integer)e.nextElement()).getValue(); 113 return publicExponent; 152 * publicExponent INTEGER, -- e 53 RSAPrivateKeyStructure( BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient) argument
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
H A D | RSAPublicKeyStructure.java | 21 private BigInteger publicExponent; field in class:RSAPublicKeyStructure 48 BigInteger publicExponent) 51 this.publicExponent = publicExponent; 66 publicExponent = ASN1Integer.getInstance(e.nextElement()).getPositiveValue(); 76 return publicExponent; 84 * publicExponent INTEGER, -- e 46 RSAPublicKeyStructure( BigInteger modulus, BigInteger publicExponent) argument
|
/external/conscrypt/src/main/java/org/conscrypt/ |
H A D | OpenSSLRSAKeyPairGenerator.java | 33 private byte[] publicExponent = new byte[] { field in class:OpenSSLRSAKeyPairGenerator 45 publicExponent)); 67 final BigInteger publicExponent = spec.getPublicExponent(); 68 if (publicExponent != null) { 69 this.publicExponent = publicExponent.toByteArray();
|
H A D | OpenSSLRSAPrivateCrtKey.java | 33 private BigInteger publicExponent; field in class:OpenSSLRSAPrivateCrtKey 74 final BigInteger publicExponent = rsaKeySpec.getPublicExponent(); 83 publicExponent == null ? null : publicExponent.toByteArray(), 120 final BigInteger publicExponent = rsaPrivateKey.getPublicExponent(); 129 publicExponent == null ? null : publicExponent.toByteArray(), 146 publicExponent = new BigInteger(params[1]); 169 return publicExponent; 219 && publicExponent [all...] |
H A D | OpenSSLRSAPublicKey.java | 33 private BigInteger publicExponent; field in class:OpenSSLRSAPublicKey 102 publicExponent = new BigInteger(params[1]); 116 return publicExponent; 145 && publicExponent.equals(other.getPublicExponent()); 152 return modulus.hashCode() ^ publicExponent.hashCode(); 163 sb.append("publicExponent="); 164 sb.append(publicExponent.toString(16)); 175 publicExponent.toByteArray(),
|
H A D | OpenSSLRSAKeyFactory.java | 182 BigInteger publicExponent = rsaKey.getPublicExponent(); 191 return engineGeneratePrivate(new RSAPrivateCrtKeySpec(modulus, publicExponent,
|
H A D | NativeCrypto.java | 117 public static native long RSA_generate_key_ex(int modulusBits, byte[] publicExponent); argument
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
H A D | JCERSAPublicKey.java | 22 private BigInteger publicExponent; field in class:JCERSAPublicKey 28 this.publicExponent = key.getExponent(); 35 this.publicExponent = spec.getPublicExponent(); 42 this.publicExponent = key.getPublicExponent(); 53 this.publicExponent = pubKey.getPublicExponent(); 78 return publicExponent;
|
H A D | JCERSAPrivateCrtKey.java | 26 private BigInteger publicExponent; field in class:JCERSAPrivateCrtKey 43 this.publicExponent = key.getPublicExponent(); 60 this.publicExponent = spec.getPublicExponent(); 78 this.publicExponent = key.getPublicExponent(); 104 this.publicExponent = key.getPublicExponent(); 141 return publicExponent;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
H A D | BCRSAPublicKey.java | 28 private BigInteger publicExponent; field in class:BCRSAPublicKey 36 this.publicExponent = key.getExponent(); 44 this.publicExponent = spec.getPublicExponent(); 52 this.publicExponent = key.getPublicExponent(); 69 this.publicExponent = pubKey.getPublicExponent(); 94 return publicExponent;
|
H A D | BCRSAPrivateCrtKey.java | 26 private BigInteger publicExponent; field in class:BCRSAPrivateCrtKey 43 this.publicExponent = key.getPublicExponent(); 60 this.publicExponent = spec.getPublicExponent(); 78 this.publicExponent = key.getPublicExponent(); 104 this.publicExponent = key.getPublicExponent(); 141 return publicExponent;
|
/external/conscrypt/src/main/native/ |
H A D | org_conscrypt_NativeCrypto.cpp | 3077 * public static native int RSA_generate_key(int modulusBits, byte[] publicExponent); 3080 jbyteArray publicExponent) { 3081 JNI_TRACE("RSA_generate_key_ex(%d, %p)", modulusBits, publicExponent); 3084 if (!arrayToBignum(env, publicExponent, &eRef)) { 3112 JNI_TRACE("RSA_generate_key_ex(n=%d, e=%p) => %p", modulusBits, publicExponent, pkey.get()); 3079 NativeCrypto_RSA_generate_key_ex(JNIEnv* env, jclass, jint modulusBits, jbyteArray publicExponent) argument
|
/external/google-tv-pairing-protocol/java/jar/ |
H A D | bcprov-jdk15-143.jar | META-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ... |
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
/external/robolectric/v1/lib/main/ |
H A D | android.jar | META-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ... |