HomeSort by relevance Sort by last modified time
    Searched refs:privateKey (Results 76 - 100 of 113) sorted by null

1 2 34 5

  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 29 import java.security.PrivateKey;
90 private PrivateKey mChannelIdPrivateKey = null;
362 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables
368 public void setChannelIdPrivateKey(PrivateKey privateKey) {
369 mChannelIdPrivateKey = privateKey;
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLSocketImpl.java 29 import java.security.PrivateKey;
500 PrivateKey privateKey = sslParameters.getKeyManager().getPrivateKey(alias);
501 if (privateKey == null) {
515 final OpenSSLKey key = OpenSSLKey.fromPrivateKey(privateKey);
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
KeyStoreTest.java 271 public static void setPrivateKeyNoPassword(KeyStore ks, String alias, PrivateKeyEntry privateKey)
273 ks.setKeyEntry(alias, privateKey.getPrivateKey(), null, privateKey.getCertificateChain());
283 PrivateKeyEntry privateKey)
286 privateKey.getPrivateKey(),
288 privateKey.getCertificateChain());
299 PrivateKeyEntry privateKey)
302 privateKey.getPrivateKey().getEncoded(),
303 privateKey.getCertificateChain());
355 PrivateKeyEntry privateKey = (PrivateKeyEntry) actual
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertFactoryPerfTest.java 30 import java.security.PrivateKey;
82 static PrivateKey privateKey;
157 privateKey = keyPair.getPrivate();
262 sig.initSign(privateKey);
X509CertImplTest.java 28 import java.security.PrivateKey;
107 static PrivateKey privateKey;
183 privateKey = keyPair.getPrivate();
289 sig.initSign(privateKey);
  /libcore/crypto/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 23 import java.security.PrivateKey;
444 PrivateKey privateKey = getPrivate().getPrivateKey();
446 X509Certificate ca1 = TestKeyStore.createCa(publicKey, privateKey, name);
448 X509Certificate ca2 = TestKeyStore.createCa(publicKey, privateKey, name);
NativeCryptoTest.java 714 private final OpenSSLKey privateKey;
720 public ServerHooks(OpenSSLKey privateKey, byte[][] certificates) {
721 this.privateKey = privateKey;
728 if (privateKey != null) {
729 NativeCrypto.SSL_use_PrivateKey(s, privateKey.getPkeyContext());
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 36 import java.security.PrivateKey;
517 public PrivateKey privateKey;
535 PrivateKey caKey;
540 caKey = issuer.privateKey;
581 holder.privateKey = keyPair.getPrivate();
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_asn1.c 192 ASN1_OCTET_STRING *privateKey;
266 ASN1_SIMPLE(EC_PRIVATEKEY, privateKey, ASN1_OCTET_STRING),
1164 if (priv_key->privateKey)
1167 M_ASN1_STRING_data(priv_key->privateKey),
1168 M_ASN1_STRING_length(priv_key->privateKey),
1262 if (!M_ASN1_OCTET_STRING_set(priv_key->privateKey, buffer, buf_len))
    [all...]
  /external/openssl/crypto/ec/
ec_asn1.c 192 ASN1_OCTET_STRING *privateKey;
266 ASN1_SIMPLE(EC_PRIVATEKEY, privateKey, ASN1_OCTET_STRING),
1164 if (priv_key->privateKey)
1167 M_ASN1_STRING_data(priv_key->privateKey),
1168 M_ASN1_STRING_length(priv_key->privateKey),
1262 if (!M_ASN1_OCTET_STRING_set(priv_key->privateKey, buffer, buf_len))
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/
ECDHKeyAgreementTest.java 31 import java.security.PrivateKey;
421 Provider keyAgreementProvider, PrivateKey privateKey, PublicKey publicKey)
424 keyAgreement.init(privateKey);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ExportWizard.java 55 import java.security.PrivateKey;
167 private PrivateKey mPrivateKey;
499 void setSigningInfo(PrivateKey privateKey, X509Certificate certificate) {
500 mPrivateKey = privateKey;
  /external/chromium_org/remoting/webapp/
host_native_messaging.js 261 var privateKey = message['privateKey'];
264 if (checkType_('privateKey', privateKey, 'string') &&
266 onDone(privateKey, publicKey);
  /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/org/apache/harmony/security/tests/java/security/
Signature2Test.java 29 import java.security.PrivateKey;
222 * java.security.Signature#initSign(java.security.PrivateKey)
544 protected void engineInitSign(PrivateKey privateKey)
SignatureTest.java 35 import java.security.PrivateKey;
153 * Class under test for void initSign(PrivateKey)
187 * Class under test for void initSign(PrivateKey, SecureRandom)
537 private class MyPrivateKey extends MyKey implements PrivateKey {}
574 protected void engineInitSign(PrivateKey privateKey)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /external/chromium/net/tools/testserver/
testserver.py 101 privateKey=self.private_key,
949 return _new_md5('privatekey%s%d' %
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.5.7/
builder-0.5.7.jar 
  /external/chromium_org/net/tools/testserver/
testserver.py 180 privateKey=self.private_key,
    [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 408 milliseconds

1 2 34 5