/prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/ |
sunec.jar | |
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/ |
SigningExtension.java | 35 import java.security.PrivateKey; 137 @Nonnull PrivateKey privateKey, 142 "CERT", privateKey, ImmutableList.of(certificate)).build();
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
KeyPairGeneratorTest.java | 36 import java.security.PrivateKey; [all...] |
KeyStoreTest.java | 310 public static void setPrivateKeyNoPassword(KeyStore ks, String alias, PrivateKeyEntry privateKey) 312 ks.setKeyEntry(alias, privateKey.getPrivateKey(), null, privateKey.getCertificateChain()); 322 PrivateKeyEntry privateKey) 325 privateKey.getPrivateKey(), 327 privateKey.getCertificateChain()); 338 PrivateKeyEntry privateKey) 341 privateKey.getPrivateKey().getEncoded(), 342 privateKey.getCertificateChain()); 399 PrivateKeyEntry privateKey = (PrivateKeyEntry) actual [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/ |
PKCS12KeyStoreSpi.java | 20 import java.security.PrivateKey; 560 if (!(key instanceof PrivateKey)) 565 if ((key instanceof PrivateKey) && (chain == null)) 610 protected PrivateKey unwrapKey( 634 return (PrivateKey)cipher.unwrap(data, "", Cipher.PRIVATE_KEY); 642 return (PrivateKey)cipher.unwrap(data, "", Cipher.PRIVATE_KEY); 880 PrivateKey privKey = unwrapKey(eIn.getEncryptionAlgorithm(), eIn.getEncryptedData(), password, wrongPKCS12Zero); [all...] |
/prebuilts/go/darwin-x86/src/crypto/tls/ |
handshake_server_test.go | 62 testConfig.Certificates[0].PrivateKey = testRSAPrivateKey 64 testConfig.Certificates[1].PrivateKey = testRSAPrivateKey 160 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey 190 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey 387 PrivateKey: testRSAPrivateKey, 748 config.Certificates[0].PrivateKey = testECDSAPrivateKey 931 PrivateKey: testECDSAPrivateKey, 1001 func benchmarkHandshakeServer(b *testing.B, cipherSuite uint16, curve CurveID, cert []byte, key crypto.PrivateKey) { 1007 config.Certificates[0].PrivateKey = key [all...] |
/prebuilts/go/linux-x86/src/crypto/tls/ |
handshake_server_test.go | 62 testConfig.Certificates[0].PrivateKey = testRSAPrivateKey 64 testConfig.Certificates[1].PrivateKey = testRSAPrivateKey 160 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey 190 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey 387 PrivateKey: testRSAPrivateKey, 748 config.Certificates[0].PrivateKey = testECDSAPrivateKey 931 PrivateKey: testECDSAPrivateKey, 1001 func benchmarkHandshakeServer(b *testing.B, cipherSuite uint16, curve CurveID, cert []byte, key crypto.PrivateKey) { 1007 config.Certificates[0].PrivateKey = key [all...] |
/cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/ |
DownloadManagerTest.java | 39 import java.security.PrivateKey; 147 PrivateKey key;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
BaseWrapCipher.java | 10 import java.security.PrivateKey; 367 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
CertInstallerHelper.java | 43 import java.security.PrivateKey; 63 private PrivateKey mUserKey; // private key
|
/external/tpm2/ |
CryptoEngine.h | 169 TPM2B_ECC_PARAMETER *privateKey; // Pointer to the private key 182 TPM2B *privateKey; // The private exponent (not a prime)
|
/frameworks/base/core/java/android/net/ |
SSLCertificateSocketFactory.java | 32 import java.security.PrivateKey; 98 private PrivateKey mChannelIdPrivateKey = null; 378 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables 384 public void setChannelIdPrivateKey(PrivateKey privateKey) { 385 mChannelIdPrivateKey = privateKey;
|
/frameworks/base/keystore/java/android/security/ |
KeyChain.java | 45 import java.security.PrivateKey; 489 * Returns the {@code PrivateKey} for the requested alias, or null 504 public static PrivateKey getPrivateKey(@NonNull Context context, @NonNull String alias) 622 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g., 634 * {@code PrivateKey} of the given {@code algorithm} to the device once 642 * PrivateKey key = ...; // private key from KeyChain
|
/libcore/ojluni/src/main/java/java/security/ |
KeyStoreSpi.java | 130 * <p>If the given key is of type {@code java.security.PrivateKey}, 143 * {@code java.security.PrivateKey}). 158 * {@code java.security.PrivateKey}, 170 * {@code java.security.PrivateKey}). 483 if (key instanceof PrivateKey) { 485 return new KeyStore.PrivateKeyEntry((PrivateKey)key, chain);
|
/prebuilts/go/darwin-x86/src/crypto/rsa/ |
rsa_test.go | 91 priv := &PrivateKey{ 105 func testKeyBasics(t *testing.T, priv *PrivateKey) { 143 var test2048Key *PrivateKey 146 test2048Key = &PrivateKey{ 184 priv := &PrivateKey{ 249 private := new(PrivateKey)
|
/prebuilts/go/linux-x86/src/crypto/rsa/ |
rsa_test.go | 91 priv := &PrivateKey{ 105 func testKeyBasics(t *testing.T, priv *PrivateKey) { 143 var test2048Key *PrivateKey 146 test2048Key = &PrivateKey{ 184 priv := &PrivateKey{ 249 private := new(PrivateKey)
|
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/ |
netty-handler-4.1.6.Final.jar | |
/external/conscrypt/common/src/main/java/org/conscrypt/ |
ConscryptEngine.java | 74 import java.security.PrivateKey; 280 * Sets the {@link PrivateKey} to be used for TLS Channel ID by this client engine. 284 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables 292 void setChannelIdPrivateKey(PrivateKey privateKey) { 303 if (privateKey == null) { 312 if (privateKey instanceof ECKey) { 313 ecParams = ((ECKey) privateKey).getParams(); 321 OpenSSLKey.fromECPrivateKeyForTLSStackOnly(privateKey, ecParams); [all...] |
/external/conscrypt/android/src/main/java/org/conscrypt/ |
Platform.java | 37 import java.security.PrivateKey; 431 public static OpenSSLKey wrapRsaKey(PrivateKey javaKey) { 451 // This may happen if the PrivateKey was not created by the 502 // The PrivateKey is probably rotten for some reason. 508 Log.e(TAG, "Error during conversion of privatekey instance: " + javaKey.toString(), e); [all...] |
/external/conscrypt/platform/src/test/java/org/conscrypt/ |
TrustedCertificateStoreTest.java | 30 import java.security.PrivateKey; 646 PrivateKey privateKey = getPrivate().getPrivateKey(); 648 X509Certificate ca1 = TestKeyStore.createCa(publicKey, privateKey, name); 650 X509Certificate ca2 = TestKeyStore.createCa(publicKey, privateKey, name); [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64/ |
crypto.a | 30 SHA384 <%SHA512 <%
MD5SHA1 <%RIPEMD160 <%SHA3_224 <%SHA3_256 <%SHA3_384 <%SHA3_512 <%SHA512_224 <%SHA512_256 <%BLAKE2s_256 <% BLAKE2b_256 <%"BLAKE2b_384 <%|SBLAKE2b_512 <%& tRegisterHash <h·1 > |