OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:keypair
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/base/
nssidentity.h
125
NSSKeyPair*
keypair
() const { return keypair_.get(); }
function in class:talk_base::NSSIdentity
128
NSSIdentity(NSSKeyPair*
keypair
, NSSCertificate* cert) :
129
keypair_(
keypair
), certificate_(cert) {}
nssidentity.cc
311
NSSKeyPair *
keypair
= NSSKeyPair::Generate();
local
323
if (!
keypair
) {
333
spki = SECKEY_CreateSubjectPublicKeyInfo(
keypair
->pubkey());
387
keypair
->privkey(),
395
identity = new NSSIdentity(
keypair
, new NSSCertificate(certificate));
400
delete
keypair
;
446
scoped_ptr<NSSKeyPair>
keypair
(new NSSKeyPair(privkey, pubkey));
456
return new NSSIdentity(
keypair
.release(), cert.release());
460
NSSKeyPair *
keypair
= keypair_->GetReference();
local
461
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 59 milliseconds