HomeSort by relevance Sort by last modified time
    Searched defs:KeyPair (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
KeyPair.cpp 32 #include "modules/crypto/KeyPair.h"
39 PassRefPtr<KeyPair> KeyPair::create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey)
43 return adoptRef(new KeyPair(Key::create(publicKey), Key::create(privateKey)));
46 KeyPair::KeyPair(const PassRefPtr<Key>& publicKey, const PassRefPtr<Key>& privateKey)
KeyPair.h 45 class KeyPair : public ScriptWrappable, public RefCounted<KeyPair> {
47 static PassRefPtr<KeyPair> create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey);
53 KeyPair(const PassRefPtr<Key>& publicKey, const PassRefPtr<Key>& privateKey);
  /external/chromium_org/net/ssl/
openssl_client_key_store.h 80 // KeyPair is an internal class used to hold a pair of private / public
82 class KeyPair {
84 explicit KeyPair(EVP_PKEY* pub_key, EVP_PKEY* priv_key);
85 KeyPair(const KeyPair& other);
86 void operator=(const KeyPair& other);
87 ~KeyPair();
93 KeyPair(); // intentionally not implemented.
96 // Returns the index of the keypair for |public_key|. or -1 if not found.
99 std::vector<KeyPair> pairs_
    [all...]
openssl_client_key_store.cc 52 OpenSSLClientKeyStore::KeyPair::KeyPair(EVP_PKEY* pub_key,
58 OpenSSLClientKeyStore::KeyPair::~KeyPair() {
63 OpenSSLClientKeyStore::KeyPair::KeyPair(const KeyPair& other) {
68 void OpenSSLClientKeyStore::KeyPair::operator=(const KeyPair& other) {
91 pairs_.push_back(KeyPair(pub_key, private_key))
    [all...]
  /libcore/luni/src/main/java/java/security/
KeyPair.java 23 * {@code KeyPair} is a container for a public key and a private key. Since the
29 public final class KeyPair implements Serializable {
36 * Constructs a new instance of {@code KeyPair} with a public key and the
44 public KeyPair(PublicKey publicKey, PrivateKey privateKey) {
  /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 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 627 milliseconds