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

  /system/tpm/trunks/
blob_parser.cc 74 std::string* creation_blob) {
75 CHECK(creation_blob) << "CreationBlob not defined.";
76 creation_blob->clear();
77 TPM_RC result = Serialize_TPM2B_CREATION_DATA(creation_data, creation_blob);
82 result = Serialize_TPM2B_DIGEST(creation_hash, creation_blob);
87 result = Serialize_TPMT_TK_CREATION(creation_ticket, creation_blob);
96 bool BlobParser::ParseCreationBlob(const std::string& creation_blob,
103 if (creation_blob.empty()) {
106 std::string mutable_creation_blob = creation_blob;
blob_parser.h 45 // This method is used to construct a |creation_blob| given the associated
51 std::string* creation_blob);
54 // |creation_blob|. Returns true on success, else false.
55 virtual bool ParseCreationBlob(const std::string& creation_blob,
tpm_utility.h 158 // refers to a loaded Tpm2.0 object, and |creation_blob| is the blob
162 const std::string& creation_blob) = 0;
197 // If the |creation_blob| out param is defined, it will contain the
211 std::string* creation_blob) = 0;
trunks_factory_for_test.cc 227 const std::string& creation_blob) override {
228 return target_->CertifyCreation(key_handle, creation_blob);
261 std::string* creation_blob) override {
266 delegate, key_blob, creation_blob);
521 std::string* creation_blob) override {
523 creation_ticket, creation_blob);
526 bool ParseCreationBlob(const std::string& creation_blob,
530 return target_->ParseCreationBlob(creation_blob, creation_data,
tpm_utility_impl.h 85 const std::string& creation_blob) override;
106 std::string* creation_blob) override;
trunks_client_test.cc 248 std::string creation_blob; local
253 kNoCreationPCR, session->GetDelegate(), &key_blob, &creation_blob);
284 result = utility->CertifyCreation(certify_key.get(), creation_blob);
289 result = utility->CertifyCreation(alternate_key.get(), creation_blob);
    [all...]
tpm_utility_test.cc 1158 std::string creation_blob; local
1168 std::string creation_blob; local
1177 std::string creation_blob; local
1376 std::string creation_blob; local
1477 std::string creation_blob; local
    [all...]
tpm_utility_impl.cc 679 const std::string& creation_blob) {
683 if (!factory_.GetBlobParser()->ParseCreationBlob(creation_blob,
    [all...]

Completed in 47 milliseconds