HomeSort by relevance Sort by last modified time
    Searched refs:PrivateKey (Results 1 - 25 of 314) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
ECPrivateKey.java 4 import java.security.PrivateKey;
10 extends ECKey, PrivateKey
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStorePrivateKey.java 19 import java.security.PrivateKey;
22 * {@link PrivateKey} backed by Android Keystore.
26 public class AndroidKeyStorePrivateKey extends AndroidKeyStoreKey implements PrivateKey {
  /libcore/luni/src/test/java/libcore/java/security/
MockPrivateKey.java 19 import java.security.PrivateKey;
22 * A mock PrivateKey class used for testing.
25 public class MockPrivateKey implements PrivateKey {
MockPrivateKey2.java 19 import java.security.PrivateKey;
22 * A mock PrivateKey class used for testing.
25 public class MockPrivateKey2 implements PrivateKey {
  /libcore/ojluni/src/main/java/java/security/interfaces/
ECPrivateKey.java 28 import java.security.PrivateKey;
36 * @see PrivateKey
41 public interface ECPrivateKey extends PrivateKey, ECKey {
DSAPrivateKey.java 41 public interface DSAPrivateKey extends DSAKey, java.security.PrivateKey {
RSAPrivateKey.java 39 public interface RSAPrivateKey extends java.security.PrivateKey, RSAKey
  /libcore/ojluni/src/main/java/java/security/
PrivateKey.java 42 * Finally, since {@code PrivateKey} is {@code Serializable}, implementations
59 public interface PrivateKey extends Key, javax.security.auth.Destroyable {
KeyPair.java 33 * should be treated like a PrivateKey.
36 * @see PrivateKey
45 private PrivateKey privateKey;
57 * @param privateKey the private key.
59 public KeyPair(PublicKey publicKey, PrivateKey privateKey) {
61 this.privateKey = privateKey;
78 public PrivateKey getPrivate()
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUCertType.java 9 PrivateKey
ClientKeyManager.java 14 import java.security.PrivateKey;
36 mAliasMap.put(OSUCertType.PrivateKey, PlatformAdapter.CERT_CLT_KEY_ALIAS + homeSP.getFQDN());
40 public void reloadKeys(Map<OSUCertType, List<X509Certificate>> certs, PrivateKey key)
49 mTempKeys.put(OSUCertType.PrivateKey, key);
104 public PrivateKey getPrivateKey(String alias) {
110 return (PrivateKey) mKeyStore.getKey(mAliasMap.get(OSUCertType.PrivateKey), null);
116 return (PrivateKey) mTempKeys.get(OSUCertType.PrivateKey);
  /frameworks/base/core/java/android/webkit/
ClientCertRequest.java 20 import java.security.PrivateKey;
69 public abstract void proceed(PrivateKey privateKey, X509Certificate[] chain);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PrivateKeyTest.java 25 import java.security.PrivateKey;
30 * Tests for <code>PrivateKey</code> class field
40 assertEquals("Incorrect serialVersionUID", cPrKey.getSerVerUID(), //PrivateKey.serialVersionUID,
44 public class checkPrivateKey implements PrivateKey {
  /libcore/ojluni/src/main/java/javax/crypto/interfaces/
DHPrivateKey.java 39 public interface DHPrivateKey extends DHKey, java.security.PrivateKey {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
AsymmetricKeyInfoConverter.java 4 import java.security.PrivateKey;
12 PrivateKey generatePrivate(PrivateKeyInfo keyInfo)
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyPairGenerator3.java 27 import java.security.PrivateKey;
46 PrivateKey priK = (new MyKeyPairGenerator1()).new PrivKey();
PrivateKeyStub.java 25 import java.security.PrivateKey;
28 * Stub for interface PrivateKey tests
31 public class PrivateKeyStub implements PrivateKey {
MySignature2.java 26 import java.security.PrivateKey;
51 protected void engineInitSign(PrivateKey privateKey)
  /libcore/luni/src/main/java/org/apache/harmony/security/
PrivateKeyImpl.java 21 import java.security.PrivateKey;
26 public class PrivateKeyImpl implements PrivateKey {
  /libcore/ojluni/src/main/java/javax/net/ssl/
X509KeyManager.java 28 import java.security.PrivateKey;
133 public PrivateKey getPrivateKey(String alias);
  /prebuilts/go/darwin-x86/src/crypto/x509/
sec1.go 26 PrivateKey []byte
32 func ParseECPrivateKey(der []byte) (*ecdsa.PrivateKey, error) {
37 func MarshalECPrivateKey(key *ecdsa.PrivateKey) ([]byte, error) {
49 PrivateKey: paddedPrivateKey,
59 func parseECPrivateKey(namedCurveOID *asn1.ObjectIdentifier, der []byte) (key *ecdsa.PrivateKey, err error) {
78 k := new(big.Int).SetBytes(privKey.PrivateKey)
83 priv := new(ecdsa.PrivateKey)
87 privateKey := make([]byte, (curveOrder.BitLen()+7)/8)
91 for len(privKey.PrivateKey) > len(privateKey) {
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
sec1.go 26 PrivateKey []byte
32 func ParseECPrivateKey(der []byte) (*ecdsa.PrivateKey, error) {
37 func MarshalECPrivateKey(key *ecdsa.PrivateKey) ([]byte, error) {
49 PrivateKey: paddedPrivateKey,
59 func parseECPrivateKey(namedCurveOID *asn1.ObjectIdentifier, der []byte) (key *ecdsa.PrivateKey, err error) {
78 k := new(big.Int).SetBytes(privKey.PrivateKey)
83 priv := new(ecdsa.PrivateKey)
87 privateKey := make([]byte, (curveOrder.BitLen()+7)/8)
91 for len(privKey.PrivateKey) > len(privateKey) {
    [all...]
  /external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
RandomPrivateKeyX509ExtendedKeyManager.java 23 import java.security.PrivateKey;
37 private final Map<String, PrivateKey> cachedKeys = new HashMap<String, PrivateKey>();
42 public PrivateKey getPrivateKey(String alias) {
43 PrivateKey originalPrivateKey = super.getPrivateKey(alias);
47 PrivateKey result;
  /libcore/support/src/test/java/libcore/javax/net/ssl/
RandomPrivateKeyX509ExtendedKeyManager.java 23 import java.security.PrivateKey;
38 private final Map<String, PrivateKey> cachedKeys = new HashMap<String, PrivateKey>();
45 public PrivateKey getPrivateKey(String alias) {
46 PrivateKey originalPrivateKey = super.getPrivateKey(alias);
51 PrivateKey result;
  /libcore/support/src/test/java/tests/security/
KeyAgreementHelper.java 22 import java.security.PrivateKey;
39 void test(PrivateKey encryptKey, PublicKey decryptKey) throws Exception {

Completed in 1319 milliseconds

1 2 3 4 5 6 7 8 91011>>