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

  /external/chromium_org/third_party/libjingle/source/talk/base/
nssidentity.h 114 NSSKeyPair* keypair() const { return keypair_.get(); } function in class:talk_base::NSSIdentity
117 NSSIdentity(NSSKeyPair* keypair, NSSCertificate* cert) :
118 keypair_(keypair), certificate_(cert) {}
nssidentity.cc 214 NSSKeyPair *keypair = NSSKeyPair::Generate(); local
226 if (!keypair) {
236 spki = SECKEY_CreateSubjectPublicKeyInfo(keypair->pubkey());
290 keypair->privkey(),
298 identity = new NSSIdentity(keypair, new NSSCertificate(certificate));
303 delete keypair;
349 scoped_ptr<NSSKeyPair> keypair(new NSSKeyPair(privkey, pubkey));
359 return new NSSIdentity(keypair.release(), cert.release());
363 NSSKeyPair *keypair = keypair_->GetReference(); local
364 if (!keypair)
    [all...]
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils_nss.cc 104 crypto::ECPrivateKey* keypair = crypto::ECPrivateKey::Create(); local
105 if (!keypair) {
108 hostname_to_key_[hostname] = keypair;
109 return keypair;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
KeyAgreementThread.java 22 import java.security.KeyPair;
40 KeyPair keypair = keyGen.generateKeyPair(); local
42 privateKey = keypair.getPrivate();
43 publicKeyBytes = keypair.getPublic().getEncoded();

Completed in 176 milliseconds