diff options
author | Seth Moore <sethmo@google.com> | 2022-01-25 22:44:24 +0000 |
---|---|---|
committer | Seth Moore <sethmo@google.com> | 2022-01-25 22:44:24 +0000 |
commit | be32113307d67f54e594e5322f85b65e4e2c4fdb (patch) | |
tree | a9b8786c217a28e6c47f127ae518109cc98c3a41 /identity/aidl/default/common/SecureHardwareProxy.h | |
parent | b5b69f0e009388fccb000a9a8aac5a38dbbd2726 (diff) |
Revert "Add remote key provisioning to the IC HAL"
Revert "Add dependency on keymint cpp lib"
Revert "Allow default identity service to call keymint"
Revert submission 1956689-add rkp to identity-default
Reason for revert: Broke git-master. Will resubmit later.
Reverted Changes:
I96dcf3027:Add remote key provisioning to the IC HAL
Id686ac33a:Add dependency on keymint cpp lib
Ib368a2a00:Log to logd in the default identity service
I7d2906de0:Refactor IC support for RKP
Iae0f14f1c:Fix formatting of identity credential aidl
I01d086a4b:Allow default identity service to call keymint
Change-Id: I76a898c04090c5befe5fb5a5d07ec2e397fdd8b3
Diffstat (limited to 'identity/aidl/default/common/SecureHardwareProxy.h')
-rw-r--r-- | identity/aidl/default/common/SecureHardwareProxy.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/identity/aidl/default/common/SecureHardwareProxy.h b/identity/aidl/default/common/SecureHardwareProxy.h index 9f63ad809b..a580444230 100644 --- a/identity/aidl/default/common/SecureHardwareProxy.h +++ b/identity/aidl/default/common/SecureHardwareProxy.h @@ -82,18 +82,6 @@ class SecureHardwareProvisioningProxy : public RefBase { virtual optional<vector<uint8_t>> createCredentialKey(const vector<uint8_t>& challenge, const vector<uint8_t>& applicationId) = 0; - // Returns public key certificate with a remotely provisioned attestation key. - // - // This returns a single certificate that is signed by the given |attestationKeyBlob|. - // The implementation of eicOpsCreateCredentialKey() on the TA side must coordinate - // with its corresponding keymint implementation to sign using the attestation key. The - // |attestationKeyCert| parameter is the certificates for |attestationKeyBlob|, - // formatted as concatenated, DER-encoded, X.509 certificates. - virtual optional<vector<uint8_t>> createCredentialKeyUsingRkp( - const vector<uint8_t>& challenge, const vector<uint8_t>& applicationId, - const vector<uint8_t>& attestationKeyBlob, - const vector<uint8_t>& attestationKeyCert) = 0; - virtual bool startPersonalization(int accessControlProfileCount, const vector<int>& entryCounts, const string& docType, size_t expectedProofOfProvisioningSize) = 0; |