HomeSort by relevance Sort by last modified time
    Searched full:privatekey (Results 151 - 175 of 310) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/openssl/ssl/
ssl_cert.c 268 if (cert->pkeys[i].privatekey != NULL)
270 ret->pkeys[i].privatekey = cert->pkeys[i].privatekey;
271 CRYPTO_add(&ret->pkeys[i].privatekey->references, 1,
332 if (ret->pkeys[i].privatekey != NULL)
333 EVP_PKEY_free(ret->pkeys[i].privatekey);
374 if (c->pkeys[i].privatekey != NULL)
375 EVP_PKEY_free(c->pkeys[i].privatekey);
462 if (sc->peer_pkeys[i].privatekey != NULL)
463 EVP_PKEY_free(sc->peer_pkeys[i].privatekey);
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiEnterpriseConfig.java 31 import java.security.PrivateKey;
95 private PrivateKey mClientPrivateKey;
174 PrivateKey userKey = null;
480 * @param privateKey
484 public void setClientKeyEntry(PrivateKey privateKey, X509Certificate clientCertificate) {
489 if (privateKey == null) {
492 if (privateKey.getEncoded() == null) {
497 mClientPrivateKey = privateKey;
516 static boolean isHardwareBackedKey(PrivateKey key)
    [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();
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
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)
SignedObjectTest.java 35 import java.security.PrivateKey;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyAgreementSpi.java 8 import java.security.PrivateKey;
277 if (!(key instanceof PrivateKey))
283 ECPrivateKeyParameters privKey = (ECPrivateKeyParameters)ECUtil.generatePrivateKeyParameter((PrivateKey)key);
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 38 import java.security.PrivateKey;
139 private PrivateKey createKey() throws Exception {
143 return (PrivateKey) keyFactory.generatePrivate(keySpec);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
ECPrivateKey.java 135 * privateKey OCTET STRING,
ECPrivateKeyStructure.java 120 * privateKey OCTET STRING,
  /external/chromium_org/net/android/
keystore_openssl.cc 83 // value that matches the wrapped PrivateKey object. See GetRsaPkeyWrapper
327 // Setup an EVP_PKEY to wrap an existing platform RSA PrivateKey object.
364 // Setup an EVP_PKEY to wrap an existing platform RSA PrivateKey object
377 // content with PrivateKey.getEncoded() on these platforms.
409 // Extract the JNI reference to the PrivateKey object.
489 // Setup an EVP_PKEY to wrap an existing DSA platform PrivateKey object.
659 // Setup an EVP_PKEY to wrap an existing platform PrivateKey object.
683 LOG(ERROR) << "Can't decode order from PrivateKey";
718 // backing this PrivateKey object.
  /external/smack/src/org/xbill/DNS/
DNSSEC.java 807 sign(PrivateKey privkey, PublicKey pubkey, int alg, byte [] data,
858 checkAlgorithm(PrivateKey key, int alg) throws UnsupportedAlgorithmException
885 * Generate a DNSSEC signature. key and privateKey must refer to the
889 * @param privkey The PrivateKey to use when signing
898 sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey,
905 * Generate a DNSSEC signature. key and privateKey must refer to the
909 * @param privkey The PrivateKey to use when signing
920 sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey,
940 PrivateKey privkey, Date inception, Date expiration)
  /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);
  /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...]
DigitalSignature.java 23 import java.security.PrivateKey;
102 public void init(PrivateKey key) {
KeyManagerImpl.java 25 import java.security.PrivateKey;
123 public PrivateKey getPrivateKey(String alias) {
OpenSSLECDHKeyAgreement.java 23 import java.security.PrivateKey;
123 if (!(key instanceof PrivateKey)) {
OpenSSLServerSocketImpl.java 22 import java.security.PrivateKey;
241 PrivateKey key = sslParameters.getKeyManager().getPrivateKey(alias);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl3Test.java 28 import java.security.PrivateKey;
112 PrivateKey pk = new KeyStoreTestSupport.MyPrivateKey(tType, "", new byte[10]);
  /frameworks/base/keystore/java/android/security/
AndroidKeyPairGenerator.java 31 import java.security.PrivateKey;
103 final PrivateKey privKey;
  /libcore/luni/src/main/java/java/security/
KeyFactory.java 175 * Generates a instance of {@code PrivateKey} from the given key
184 public final PrivateKey generatePrivate(KeySpec keySpec)
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/x509/
SubjectPublicKeyInfoTest.java 32 import java.security.PrivateKey;
124 protected PrivateKey engineGeneratePrivate(KeySpec keySpec) throws InvalidKeySpecException {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestKeyStoreSpi.java 12 import java.security.PrivateKey;
205 if (key instanceof PrivateKey)
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CRLImplTest.java 28 import java.security.PrivateKey;
176 private static PrivateKey privateKey;
184 privateKey = keyPair.getPrivate();
209 sig.initSign(privateKey);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 10 import java.security.PrivateKey;
282 PrivateKey signingKey)
310 PrivateKey signingKey)
325 PrivateKey signingKey,
341 PrivateKey signingKey,

Completed in 386 milliseconds

1 2 3 4 5 67 8 91011>>