libfs_avb: Pass const string by reference
Minor performance improvement for ValidatePublicKeyBlob(). Test: TreeHugger Change-Id: I3498b529abedb8169d2488a2dc04cbd42cdb6f7d
This commit is contained in:
parent
50cb647e7d
commit
4d6f4cc4fe
|
@ -326,7 +326,7 @@ bool ValidatePublicKeyBlob(const uint8_t* key, size_t length,
|
|||
return false;
|
||||
}
|
||||
|
||||
bool ValidatePublicKeyBlob(const std::string key_blob_to_validate,
|
||||
bool ValidatePublicKeyBlob(const std::string& key_blob_to_validate,
|
||||
const std::vector<std::string>& allowed_key_paths) {
|
||||
std::string allowed_key_blob;
|
||||
if (key_blob_to_validate.empty()) {
|
||||
|
|
|
@ -80,7 +80,7 @@ VBMetaVerifyResult VerifyVBMetaSignature(const VBMetaData& vbmeta,
|
|||
|
||||
bool ValidatePublicKeyBlob(const uint8_t* key, size_t length, const std::string& expected_key_blob);
|
||||
|
||||
bool ValidatePublicKeyBlob(const std::string key_blob_to_validate,
|
||||
bool ValidatePublicKeyBlob(const std::string& key_blob_to_validate,
|
||||
const std::vector<std::string>& expected_key_paths);
|
||||
|
||||
// Detects if whether a partition contains a rollback image.
|
||||
|
|
Loading…
Reference in New Issue