HomeSort by relevance Sort by last modified time
    Searched refs:RSAKey (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/keystore/src/android/keystore/cts/
RSACipherTest.java 24 import java.security.interfaces.RSAKey;
51 BigInteger modulus = ((RSAKey) publicKey).getModulus();
84 BigInteger modulus = ((RSAKey) publicKey).getModulus();
111 BigInteger modulus = ((RSAKey) publicKey).getModulus();
139 BigInteger modulus = ((RSAKey) publicKey).getModulus();
169 BigInteger modulus = ((RSAKey) publicKey).getModulus();
201 BigInteger modulus = ((RSAKey) privateKey).getModulus();
RSASignatureTest.java 25 import java.security.interfaces.RSAKey;
62 int modulusSizeBits = ((RSAKey) publicKey).getModulus().bitLength();
130 assertEquals(512, ((RSAKey) keyPair.getPrivate()).getModulus().bitLength());
131 assertEquals(512, ((RSAKey) keyPair.getPublic()).getModulus().bitLength());
TestUtils.java 51 import java.security.interfaces.RSAKey;
123 assertTrue("RSA public key must be instance of RSAKey: "
125 publicKey instanceof RSAKey);
126 assertTrue("RSA private key must be instance of RSAKey: "
128 privateKey instanceof RSAKey);
130 ((RSAKey) publicKey).getModulus(), ((RSAKey) privateKey).getModulus());
139 } else if (key instanceof RSAKey) {
140 return ((RSAKey) key).getModulus().bitLength();
    [all...]
AndroidKeyStoreTest.java 52 import java.security.interfaces.RSAKey;
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLRSAPrivateKey.java 26 import java.security.interfaces.RSAKey;
116 if (privateKey instanceof RSAKey) {
117 modulus = ((RSAKey) privateKey).getModulus();
118 } else if (publicKey instanceof RSAKey) {
119 modulus = ((RSAKey) publicKey).getModulus();
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLRSAPrivateKey.java 27 import java.security.interfaces.RSAKey;
117 if (privateKey instanceof RSAKey) {
118 modulus = ((RSAKey) privateKey).getModulus();
119 } else if (publicKey instanceof RSAKey) {
120 modulus = ((RSAKey) publicKey).getModulus();
  /external/nos/host/generic/nugget/proto/nugget/app/keymaster/
keymaster_types.proto 84 message RSAKey {
keymaster.proto 159 RSAKey rsa = 2;
180 RSAKey rsa = 3;
395 RSAKey rsa = 2; // rsa or ec set based on request algorithm selector.
  /external/v8/benchmarks/
crypto.js     [all...]
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
SSLSocketVersionCompatibilityTest.java 69 import java.security.interfaces.RSAKey;
    [all...]
  /external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/
SSLSocketVersionCompatibilityTest.java 70 import java.security.interfaces.RSAKey;
    [all...]

Completed in 1007 milliseconds