/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
KeyCheckPage.java | 49 import java.security.PrivateKey; 73 private PrivateKey mPrivateKey;
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
Signature2Test.java | 119 * @tests java.security.Signature#initSign(java.security.PrivateKey)
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/ |
Signature_Impl2Test.java | 225 private class MyPrivateKey extends MyKey implements PrivateKey {}
|
/external/chromium_org/crypto/ |
ec_private_key.h | 30 // TODO(mattm): make this and RSAPrivateKey implement some PrivateKey interface.
|
/external/chromium_org/net/android/ |
keystore_unittest.cc | 447 // |android_key| is a JNI reference to the platform PrivateKey object. 471 // |android_key| is a JNI reference to the platform PrivateKey object. 504 // Create platform PrivateKey object from it. 540 // Create platform PrivateKey object from it.
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebCrypto.h | 71 BLINK_EXPORT void completeWithKeyPair(const WebCryptoKey& publicKey, const WebCryptoKey& privateKey);
|
/libcore/luni/src/main/java/java/security/ |
KeyRep.java | 87 * <li> {@code Type.PRIVATE} | "PKCS#8" : returns a {@link PrivateKey}
|
SignedObject.java | 72 public SignedObject(Serializable object, PrivateKey signingKey,
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
DSAPrivateKeyImpl.java | 45 * The class provides DSAPrivateKey functionality by extending a class implementing PrivateKey
|
/frameworks/base/services/java/com/android/server/connectivity/ |
Vpn.java | 736 String privateKey = ""; 741 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert; 753 if (privateKey == null || userCert == null || caCert == null || serverCert == null) { 768 iface, profile.server, "udprsa", privateKey, userCert, 780 iface, profile.server, "xauthrsa", privateKey, userCert, [all...] |
/libcore/luni/src/test/java/libcore/java/security/ |
SignatureTest.java | 24 import java.security.PrivateKey; [all...] |
KeyPairGeneratorTest.java | 28 import java.security.PrivateKey; 247 PrivateKey privKey = kf.generatePrivate(spec);
|
/development/samples/ApiDemos/src/com/example/android/apis/security/ |
KeyStoreUsage.java | 361 * Use a PrivateKey in the KeyStore to create a signature over 430 * Verify a signature previously made by a PrivateKey in our
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
KeyAgreementTest.java | 29 import java.security.PrivateKey; 72 private static PrivateKey privKey = null;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
KSBuilder_ImplTest.java | 32 import java.security.PrivateKey; 144 PrivateKey privKey = tkp.getPrivate();
|
KeyStore_Impl1Test.java | 30 import java.security.PrivateKey; 467 PrivateKey privKey = tkp.getPrivate(); 737 PrivateKey key = tkp.getPrivate(); [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
ServerHandshakeImpl.java | 26 import java.security.PrivateKey; 58 private PrivateKey privKey;
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
KeyAgreementTest.java | 30 import java.security.PrivateKey; 74 private static PrivateKey privKey = null;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ExportHelper.java | 64 import java.security.PrivateKey; 91 public static void exportReleaseApk(IProject project, File outputFile, PrivateKey key,
|
/external/chromium_org/chrome/browser/ui/android/ |
ssl_client_certificate_request.cc | 137 // |private_key_ref| is the platform PrivateKey object JNI reference for
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
s2_srvr.c | 443 if (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL) 1124 if ((c == NULL) || (c->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL)) 1129 if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey->type != EVP_PKEY_RSA) 1134 rsa=c->pkeys[SSL_PKEY_RSA_ENC].privatekey->pkey.rsa;
|
d1_clnt.c | [all...] |
/external/openssl/ssl/ |
s2_srvr.c | 443 if (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL) 1124 if ((c == NULL) || (c->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL)) 1129 if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey->type != EVP_PKEY_RSA) 1134 rsa=c->pkeys[SSL_PKEY_RSA_ENC].privatekey->pkey.rsa;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/ |
BcKeyStoreSpi.java | 16 import java.security.PrivateKey; 386 if (key instanceof PrivateKey) 664 if ((key instanceof PrivateKey) && (chain == null))
|
/frameworks/base/keystore/tests/src/android/security/ |
AndroidKeyPairGeneratorTest.java | 24 import java.security.PrivateKey; 496 final PrivateKey privKey = pair.getPrivate(); 497 assertNotNull("The PrivateKey for the KeyPair should be not null", privKey);
|