OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:key_pair
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/extensions/
extension_creator.cc
107
scoped_ptr<crypto::RSAPrivateKey>
key_pair
(
109
if (!
key_pair
.get()) {
116
if (!
key_pair
->ExportPrivateKey(&private_key_vector)) {
148
return
key_pair
.release();
249
scoped_ptr<crypto::RSAPrivateKey>
key_pair
;
local
251
key_pair
.reset(ReadInputKey(private_key_path));
253
key_pair
.reset(GenerateKey(output_private_key_path));
254
if (!
key_pair
.get())
266
SignZip(zip_path,
key_pair
.get(), &signature) &&
267
WriteCRX(zip_path,
key_pair
.get(), signature, crx_path))
[
all
...]
/external/chromium/third_party/libjingle/source/talk/base/
opensslidentity.cc
191
OpenSSLKeyPair*
key_pair
, const std::string& common_name) {
196
X509* x509 = MakeCertificate(
key_pair
->pkey(), actual_common_name.c_str());
252
OpenSSLKeyPair *
key_pair
= OpenSSLKeyPair::Generate();
local
253
if (
key_pair
) {
255
OpenSSLCertificate::Generate(
key_pair
, common_name);
257
return new OpenSSLIdentity(
key_pair
, certificate);
258
delete
key_pair
;
Completed in 62 milliseconds