OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:private_key_path
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/extensions/
extension_creator.h
26
// private key that is either provided in |
private_key_path
| or is internal
44
const base::FilePath&
private_key_path
,
57
// |
private_key_path
| is the optional path to an existing private key to sign
63
const base::FilePath&
private_key_path
,
72
// Reads private key from |
private_key_path
|.
73
crypto::RSAPrivateKey* ReadInputKey(const base::FilePath&
private_key_path
);
75
// Generates a key pair and writes the private key to |
private_key_path
|
77
crypto::RSAPrivateKey* GenerateKey(const base::FilePath&
private_key_path
);
extension_creator.cc
39
const base::FilePath&
private_key_path
,
59
if (!
private_key_path
.value().empty() &&
60
!base::PathExists(
private_key_path
)) {
68
if (
private_key_path
.value().empty() &&
121
private_key_path
) {
122
if (!base::PathExists(
private_key_path
)) {
129
if (!base::ReadFileToString(
private_key_path
, &private_key_contents)) {
289
const base::FilePath&
private_key_path
,
293
if (!InitializeInput(extension_dir, crx_path,
private_key_path
,
300
if (!
private_key_path
.value().empty()
[
all
...]
startup_helper.cc
65
base::FilePath
private_key_path
;
local
67
private_key_path
= cmd_line.GetSwitchValuePath(switches::kPackExtensionKey);
72
pack_job_ = new PackExtensionJob(this, src_dir,
private_key_path
,
extension_service_unittest.cc
[
all
...]
/system/extras/verity/
generate_verity_key.c
84
static int write_public_keyfile(RSA *private_key, const char *
private_key_path
)
91
if (asprintf(&path, "%s.pub",
private_key_path
) < 0)
/system/core/adb/
adb_auth_host.c
132
static int write_public_keyfile(RSA *private_key, const char *
private_key_path
)
139
ret = snprintf(path, sizeof(path), "%s.pub",
private_key_path
);
/external/chromium_org/chrome/browser/extensions/api/developer_private/
developer_private_api.cc
[
all
...]
Completed in 105 milliseconds