Home
last modified time | relevance | path

Searched refs:RSAKey (Results 1 – 7 of 7) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLRSAPrivateKey.java26 import java.security.interfaces.RSAKey;
116 if (privateKey instanceof RSAKey) { in wrapJCAPrivateKeyForTLSStackOnly()
117 modulus = ((RSAKey) privateKey).getModulus(); in wrapJCAPrivateKeyForTLSStackOnly()
118 } else if (publicKey instanceof RSAKey) { in wrapJCAPrivateKeyForTLSStackOnly()
119 modulus = ((RSAKey) publicKey).getModulus(); in wrapJCAPrivateKeyForTLSStackOnly()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLRSAPrivateKey.java27 import java.security.interfaces.RSAKey;
117 if (privateKey instanceof RSAKey) { in wrapJCAPrivateKeyForTLSStackOnly()
118 modulus = ((RSAKey) privateKey).getModulus(); in wrapJCAPrivateKeyForTLSStackOnly()
119 } else if (publicKey instanceof RSAKey) { in wrapJCAPrivateKeyForTLSStackOnly()
120 modulus = ((RSAKey) publicKey).getModulus(); in wrapJCAPrivateKeyForTLSStackOnly()
/external/v8/benchmarks/
Dcrypto.js1499 function RSAKey() { class
1542 RSAKey.prototype.doPublic = RSADoPublic;
1545 RSAKey.prototype.setPublic = RSASetPublic;
1546 RSAKey.prototype.encrypt = RSAEncrypt;
1658 RSAKey.prototype.doPrivate = RSADoPrivate;
1661 RSAKey.prototype.setPrivate = RSASetPrivate;
1662 RSAKey.prototype.setPrivateEx = RSASetPrivateEx;
1663 RSAKey.prototype.generate = RSAGenerate;
1664 RSAKey.prototype.decrypt = RSADecrypt;
1684 var RSA = new RSAKey();
[all …]
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/
Dkeymaster.proto159 RSAKey rsa = 2;
180 RSAKey rsa = 3;
395 RSAKey rsa = 2; // rsa or ec set based on request algorithm selector.
Dkeymaster_types.proto84 message RSAKey { message
/external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/
DSSLSocketVersionCompatibilityTest.java70 import java.security.interfaces.RSAKey;
1003 implements RSAKey, PrivateKey, DelegatingPrivateKey {
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
DSSLSocketVersionCompatibilityTest.java69 import java.security.interfaces.RSAKey;
986 implements RSAKey, PrivateKey, DelegatingPrivateKey {