HomeSort by relevance Sort by last modified time
    Searched refs:private_key_path (Results 1 - 11 of 11) sorted by null

  /system/update_engine/payload_generator/
delta_diff_generator.h 34 // |private_key_path| points to a private key used to sign the update.
41 const std::string& private_key_path,
payload_file.h 54 const std::string& private_key_path,
payload_signer.h 64 // Given a raw |hash| and a private key in |private_key_path| calculates the
67 const std::string& private_key_path,
78 // |private_key_path|, metadata size in |metadata_size|, metadata signature
129 // and signs the hash with the given private_key_path and writes the signed
134 const std::string& private_key_path,
delta_diff_generator.cc 56 const string& private_key_path,
129 private_key_path, metadata_size));
payload_file.cc 106 const string& private_key_path,
177 if (!private_key_path.empty()) {
179 PayloadSigner::SignatureBlobLength(vector<string>(1, private_key_path),
231 !private_key_path.empty()) {
238 vector<string>(1, private_key_path),
261 if (!private_key_path.empty()) {
266 vector<string>(1, private_key_path),
payload_signer.cc 349 const string& private_key_path,
351 LOG(INFO) << "Signing hash with private key: " << private_key_path;
359 // openssl rsautl -raw -sign -inkey |private_key_path|
362 FILE* fprikey = fopen(private_key_path.c_str(), "rb");
504 const string& private_key_path,
515 private_key_path,
  /tools/acloud/internal/lib/
utils.py 270 def CreateSshKeyPairIfNotExist(private_key_path, public_key_path):
277 private_key_path: Path to the private key file.
285 private_key_path = os.path.expanduser(private_key_path)
288 not os.path.exists(private_key_path))
292 private_key_path, public_key_path)
294 cmd = SSH_KEYGEN_CMD + ["-C", getpass.getuser(), "-f", private_key_path]
297 private_key_path, public_key_path, " ".join(cmd))
311 default_pub_key_path = "%s.pub" % private_key_path
321 private_key_path, public_key_path
    [all...]
auth.py 55 def _CreateOauthServiceAccountCreds(email, private_key_path, scopes):
60 private_key_path: Path to the service account P12 key.
71 with open(private_key_path) as f:
78 private_key_path, str(e))
  /system/extras/verity/
generate_verity_key.c 34 static int write_public_keyfile(RSA *private_key, const char *private_key_path)
41 if (asprintf(&path, "%s.pub", private_key_path) < 0)
  /system/update_engine/payload_consumer/
delta_performer_integration_test.cc 169 static size_t GetSignatureSize(const string& private_key_path) {
175 private_key_path,
196 string private_key_path = GetBuildArtifactsPath(kUnittestPrivateKeyPath); local
197 int signature_size = GetSignatureSize(private_key_path);
202 ASSERT_TRUE(PayloadSigner::SignHash(hash, private_key_path, &signature));
211 string private_key_path = GetBuildArtifactsPath(kUnittestPrivateKeyPath); local
214 &private_key_path,
221 ScopedPathUnlinker key_unlinker(private_key_path);
228 // openssl genrsa -out <private_key_path> 2048
234 FILE* fprikey = fopen(private_key_path.c_str(), "w")
    [all...]
  /system/core/adb/
adb_auth_host.cpp 76 static bool write_public_keyfile(RSA* private_key, const std::string& private_key_path) {
99 std::string path(private_key_path + ".pub");

Completed in 130 milliseconds