472e6c8e18
- Add Credential.proveOwership() - Add Credential.deleteWithChallenge() - Add Credential.updateCredential() - Add Credential.storeStaticAuthenticationDataWithExpirationDate() - Store this on disk. For entries stored without this parameter assume they never expire. - Add allowUsingExpiredKeys to Credential.selectAuthKey() and Credential.getEntries() - Unless set to true, never select an expired key - Introduce ERROR_NOT_SUPPORTED and return this if HAL does not support operation Bug: 170146643 Test: atest android.security.identity.cts Change-Id: Ic5dafc6498c9c59b82942def9d348d974f008589
69 lines
2 KiB
C++
69 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2019, The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef SYSTEM_SECURITY_CREDENTIAL_STORE_H_
|
|
#define SYSTEM_SECURITY_CREDENTIAL_STORE_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <android/hardware/identity/IIdentityCredentialStore.h>
|
|
|
|
#include <android/security/identity/BnCredentialStore.h>
|
|
|
|
namespace android {
|
|
namespace security {
|
|
namespace identity {
|
|
|
|
using ::android::sp;
|
|
using ::android::binder::Status;
|
|
using ::std::string;
|
|
using ::std::unique_ptr;
|
|
using ::std::vector;
|
|
|
|
using ::android::hardware::identity::HardwareInformation;
|
|
using ::android::hardware::identity::IIdentityCredentialStore;
|
|
|
|
class CredentialStore : public BnCredentialStore {
|
|
public:
|
|
CredentialStore(const string& dataPath, sp<IIdentityCredentialStore> hal);
|
|
~CredentialStore();
|
|
|
|
bool init();
|
|
|
|
// ICredentialStore overrides
|
|
Status getSecurityHardwareInfo(SecurityHardwareInfoParcel* _aidl_return) override;
|
|
|
|
Status createCredential(const string& credentialName, const string& docType,
|
|
sp<IWritableCredential>* _aidl_return) override;
|
|
|
|
Status getCredentialByName(const string& credentialName, int32_t cipherSuite,
|
|
sp<ICredential>* _aidl_return) override;
|
|
|
|
private:
|
|
string dataPath_;
|
|
|
|
sp<IIdentityCredentialStore> hal_;
|
|
int halApiVersion_;
|
|
|
|
HardwareInformation hwInfo_;
|
|
};
|
|
|
|
} // namespace identity
|
|
} // namespace security
|
|
} // namespace android
|
|
|
|
#endif // SYSTEM_SECURITY_CREDENTIAL_STORE_H_
|