HomeSort by relevance Sort by last modified time
    Searched full:privatekey (Results 176 - 200 of 400) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
ECPrivateKeyStructure.java 120 * privateKey OCTET STRING,
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
enterprise_platformKeys.html 66 {name : "RSASSA-PKCS1-v1_5"}, cachedKeyPair.privateKey, data);
  /external/chromium_org/components/ownership/
owner_settings_service.cc 101 const scoped_refptr<PrivateKey>& private_key) {
  /external/chromium_org/third_party/boringssl/src/ssl/test/runner/
key_agreement.go 54 err = rsa.DecryptPKCS1v15SessionKey(config.rand(), cert.PrivateKey.(*rsa.PrivateKey), ciphertext, preMasterSecret)
218 privKey, ok := cert.PrivateKey.(*ecdsa.PrivateKey)
231 privKey, ok := cert.PrivateKey.(*rsa.PrivateKey)
332 privateKey []byte
380 ka.privateKey, x, y, err = elliptic.GenerateKey(ka.curve, config.rand())
408 x, _ = ka.curve.ScalarMult(x, y, ka.privateKey)
  /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/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignedObjectTest.java 35 import java.security.PrivateKey;
  /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]);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
python_rsakey.py 87 """Parse a string containing a <privateKey> or <publicKey>, or
111 #Get the privateKey
  /external/conscrypt/src/main/java/org/conscrypt/
KeyManagerImpl.java 25 import java.security.PrivateKey;
129 public PrivateKey getPrivateKey(String alias) {
  /external/conscrypt/src/platform/java/org/conscrypt/
Platform.java 34 import java.security.PrivateKey;
124 public static OpenSSLKey wrapRsaKey(PrivateKey key) {
  /frameworks/base/keystore/java/android/security/
AndroidKeyPairGenerator.java 31 import java.security.PrivateKey;
102 final PrivateKey privKey;
KeyChain.java 33 import java.security.PrivateKey;
303 * Returns the {@code PrivateKey} for the requested alias, or null
310 public static PrivateKey getPrivateKey(Context context, String alias)
377 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g.,
387 * {@code PrivateKey} of the given {@code algorithm} to the device once
  /libcore/luni/src/main/java/java/security/
KeyFactory.java 176 * Generates a instance of {@code PrivateKey} from the given key
185 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 10 import java.security.PrivateKey;
262 PrivateKey signingKey)
290 PrivateKey signingKey)
305 PrivateKey signingKey,
321 PrivateKey signingKey,
  /external/conscrypt/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 25 import java.security.PrivateKey;
544 PrivateKey privateKey = getPrivate().getPrivateKey();
546 X509Certificate ca1 = TestKeyStore.createCa(publicKey, privateKey, name);
548 X509Certificate ca2 = TestKeyStore.createCa(publicKey, privateKey, name);
  /packages/apps/Settings/tests/src/com/android/settings/vpn2/
VpnTests.java 181 String privateKey = "";
186 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
198 Log.v(TAG, "privateKey: \n" + ((privateKey == null) ? "" : privateKey));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ExportWizard.java 59 import java.security.PrivateKey;
171 private PrivateKey mPrivateKey;
507 void setSigningInfo(PrivateKey privateKey, X509Certificate certificate) {
508 mPrivateKey = privateKey;
  /cts/tests/tests/keystore/src/android/keystore/cts/
AndroidKeyPairGeneratorTest.java 29 import java.security.PrivateKey;
436 final PrivateKey privKey = pair.getPrivate();
437 assertNotNull("The PrivateKey for the KeyPair should be not null", privKey);
483 private static void assertUsableInSSLConnection(final PrivateKey privKey,
527 private final PrivateKey key;
530 public MyKeyManager(PrivateKey key, X509Certificate cert) {
561 public PrivateKey getPrivateKey(String alias) {
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLHeartbleedTest.java 36 import java.security.PrivateKey;
267 PrivateKey privateKey = keyFactory.generatePrivate(new PKCS8EncodedKeySpec(
281 new KeyManager[] {new HardcodedCertX509KeyManager(privateKey, certChain)},
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_cert.c 258 if (cpk->privatekey != NULL)
260 rpk->privatekey = cpk->privatekey;
261 CRYPTO_add(&cpk->privatekey->references, 1,
389 if (cpk->privatekey)
391 EVP_PKEY_free(cpk->privatekey);
392 cpk->privatekey = NULL;
571 if (sc->peer_pkeys[i].privatekey != NULL)
572 EVP_PKEY_free(sc->peer_pkeys[i].privatekey);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 19 import java.security.PrivateKey;
528 if (!(key instanceof PrivateKey))
533 if ((key instanceof PrivateKey) && (chain == null))
578 protected PrivateKey unwrapKey(
593 PrivateKey out;
610 return (PrivateKey)cipher.unwrap(data, "", Cipher.PRIVATE_KEY);
618 return (PrivateKey)cipher.unwrap(data, "", Cipher.PRIVATE_KEY);
857 PrivateKey privKey = unwrapKey(eIn.getEncryptionAlgorithm(), eIn.getEncryptedData(), password, wrongPKCS12Zero);
956 PrivateKey privKey = unwrapKey(eIn.getEncryptionAlgorithm(), eIn.getEncryptedData(), password, wrongPKCS12Zero);
    [all...]

Completed in 5544 milliseconds

1 2 3 4 5 6 78 91011>>