Searched refs:private_key_path (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/extensions/
H A Dextension_creator.h26 // 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);
H A Dextension_creator.cc39 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)) {
290 const base::FilePath& private_key_path,
294 if (!InitializeInput(extension_dir, crx_path, private_key_path,
301 if (!private_key_path
36 InitializeInput( const base::FilePath& extension_dir, const base::FilePath& crx_path, const base::FilePath& private_key_path, const base::FilePath& private_key_output_path, int run_flags) argument
120 ReadInputKey(const base::FilePath& private_key_path) argument
288 Run(const base::FilePath& extension_dir, const base::FilePath& crx_path, const base::FilePath& private_key_path, const base::FilePath& output_private_key_path, int run_flags) argument
[all...]
H A Dstartup_helper.cc104 base::FilePath private_key_path; local
106 private_key_path = cmd_line.GetSwitchValuePath(switches::kPackExtensionKey);
111 pack_job_ = new PackExtensionJob(this, src_dir, private_key_path,
H A Dextension_service_unittest.cc1155 const base::FilePath& private_key_path) OVERRIDE;
1175 const base::FilePath& private_key_path) {
1183 EXPECT_EQ(expected_private_key_path_.value(), private_key_path.value());
1184 ASSERT_TRUE(base::PathExists(private_key_path));
1173 OnPackSuccess( const base::FilePath& crx_path, const base::FilePath& private_key_path) argument
/external/chromium_org/chrome/browser/extensions/api/developer_private/
H A Ddeveloper_private_api.cc1009 key_path_str_ = params->private_key_path;

Completed in 718 milliseconds