Home
last modified time | relevance | path

Searched refs:KeymasterArguments (Results 1 – 13 of 13) sorted by relevance

/system/security/keystore/
DKeymasterArguments.cpp28 status_t KeymasterArguments::readFromParcel(const android::Parcel* in) { in readFromParcel()
33 status_t KeymasterArguments::writeToParcel(android::Parcel* out) const { in writeToParcel()
37 KeymasterArguments::KeymasterArguments(hardware::hidl_vec<keystore::KeyParameter>&& other) in KeymasterArguments() function in android::security::keymaster::KeymasterArguments
40 KeymasterArguments::KeymasterArguments(const hardware::hidl_vec<keystore::KeyParameter>& other) in KeymasterArguments() function in android::security::keymaster::KeymasterArguments
Dkey_store_service.h92 const ::android::security::keymaster::KeymasterArguments& arguments,
104 const ::android::security::keymaster::KeymasterArguments& arguments, int32_t format,
117 const ::android::security::keymaster::KeymasterArguments& params,
122 const ::android::security::keymaster::KeymasterArguments& params,
127 const ::android::security::keymaster::KeymasterArguments& params,
144 const ::android::security::keymaster::KeymasterArguments& params,
148 const ::android::security::keymaster::KeymasterArguments& params,
156 const ::android::security::keymaster::KeymasterArguments& params, int64_t rootSid,
Dkeystore_client_impl.cpp208 ::android::security::keymaster::KeymasterArguments(key_parameters.hidl_data()), in generateKey()
263 ::android::security::keymaster::KeymasterArguments(key_parameters.hidl_data()), in importKey()
329 android::security::keymaster::KeymasterArguments(input_parameters.hidl_data()), in beginOperation()
359 android::security::keymaster::KeymasterArguments(input_parameters.hidl_data()), in updateOperation()
393 android::security::keymaster::KeymasterArguments(input_parameters.hidl_data()), in finishOperation()
Dkey_store_service.cpp63 using android::security::keymaster::KeymasterArguments;
617 const String16& name, const KeymasterArguments& params, const ::std::vector<uint8_t>& entropy, in generateKey()
720 const String16& name, const KeymasterArguments& params, int32_t format, in importKey()
810 bool pruneable, const KeymasterArguments& params, in begin()
859 const ::android::security::keymaster::KeymasterArguments& params, in update()
882 const ::android::security::keymaster::KeymasterArguments& params, in finish()
1083 bool isDeviceIdAttestationRequested(const KeymasterArguments& params) { in isDeviceIdAttestationRequested()
1094 bool needsPermissionToAttestDeviceIds(const KeymasterArguments& params) { in needsPermissionToAttestDeviceIds()
1107 const String16& name, const KeymasterArguments& params, int32_t* _aidl_return) { in attestKey()
1166 const KeymasterArguments& params, int32_t* _aidl_return) { in attestDeviceIds()
[all …]
DAndroid.bp148 "KeymasterArguments.cpp",
Dkeymaster_worker.cpp43 using AndroidKeymasterArguments = android::security::keymaster::KeymasterArguments;
/system/security/keystore/include/keystore/
DKeymasterArguments.h27 struct KeymasterArguments : public Parcelable { struct
28 KeymasterArguments(){}; in KeymasterArguments() argument
30 KeymasterArguments(hardware::hidl_vec<::keystore::KeyParameter>&& other);
31 explicit KeymasterArguments(const hardware::hidl_vec<::keystore::KeyParameter>& other);
DKeyCharacteristics.h35 softwareEnforced = KeymasterArguments(other.softwareEnforced); in KeyCharacteristics()
36 hardwareEnforced = KeymasterArguments(other.hardwareEnforced); in KeyCharacteristics()
41 KeymasterArguments softwareEnforced;
42 KeymasterArguments hardwareEnforced;
/system/security/keystore/binder/android/security/keystore/
DIKeystoreService.aidl19 import android.security.keymaster.KeymasterArguments;
59 …int generateKey(IKeystoreKeyCharacteristicsCallback cb, String alias, in KeymasterArguments argume… in generateKey()
63 …int importKey(IKeystoreKeyCharacteristicsCallback cb, String alias, in KeymasterArguments argument… in importKey()
68 in KeymasterArguments params, in byte[] entropy, int uid); in begin()
69 …int update(in IKeystoreOperationResultCallback cb, IBinder token, in KeymasterArguments params, in… in update()
70 …int finish(in IKeystoreOperationResultCallback cb, IBinder token, in KeymasterArguments params, in… in finish()
76 …int attestKey(in IKeystoreCertificateChainCallback cb, String alias, in KeymasterArguments params); in attestKey()
77 int attestDeviceIds(in IKeystoreCertificateChainCallback cb, in KeymasterArguments params); in attestDeviceIds()
80 in String wrappingKeyAlias, in byte[] maskingKey, in KeymasterArguments arguments, in importWrappedKey()
/system/security/keystore/binder/android/security/keymaster/
DKeymasterArguments.aidl20 parcelable KeymasterArguments cpp_header "keystore/KeymasterArguments.h";
/system/security/keystore-engine/
Dkeystore_backend_binder.cpp60 using android::security::keymaster::KeymasterArguments;
144 true /*pruneable*/, KeymasterArguments(params), in sign()
168 binder_result = service->update(promise, handle, KeymasterArguments(params), in sign()
215 promise, handle, KeymasterArguments(params), std::vector<uint8_t>() /* input */, in sign()
/system/hardware/interfaces/wifi/keystore/1.0/default/
Dkeystore.cpp36 using android::security::keymaster::KeymasterArguments;
190 true /*pruneable*/, KeymasterArguments(params), in sign()
218 binder_result = service->update(promise, handle, KeymasterArguments(params), in sign()
270 promise, handle, KeymasterArguments(params), std::vector<uint8_t>() /* input */, in sign()
/system/hardware/interfaces/wifi/keystore/1.0/vts/functional/
DVtsHalWifiKeystoreV1_0TargetTest.cpp162 promise, keyName16, KeymasterArguments(key_parameters.hidl_data()), entropy, in generateKey()