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.h93 const ::android::security::keymaster::KeymasterArguments& arguments,
105 const ::android::security::keymaster::KeymasterArguments& arguments, int32_t format,
118 const ::android::security::keymaster::KeymasterArguments& params,
123 const ::android::security::keymaster::KeymasterArguments& params,
128 const ::android::security::keymaster::KeymasterArguments& params,
142 const ::android::security::keymaster::KeymasterArguments& params,
146 const ::android::security::keymaster::KeymasterArguments& params,
154 const ::android::security::keymaster::KeymasterArguments& params, int64_t rootSid,
Dkeystore_client_impl.cpp214 ::android::security::keymaster::KeymasterArguments(key_parameters.hidl_data()), in generateKey()
269 ::android::security::keymaster::KeymasterArguments(key_parameters.hidl_data()), in importKey()
335 android::security::keymaster::KeymasterArguments(input_parameters.hidl_data()), in beginOperation()
365 android::security::keymaster::KeymasterArguments(input_parameters.hidl_data()), in updateOperation()
397 android::security::keymaster::KeymasterArguments(input_parameters.hidl_data()), in finishOperation()
Dkey_store_service.cpp60 using android::security::keymaster::KeymasterArguments;
650 const String16& name, const KeymasterArguments& params, const ::std::vector<uint8_t>& entropy, in generateKey()
759 const String16& name, const KeymasterArguments& params, int32_t format, in importKey()
851 bool pruneable, const KeymasterArguments& params, in begin()
901 const ::android::security::keymaster::KeymasterArguments& params, in update()
925 const ::android::security::keymaster::KeymasterArguments& params, in finish()
993 bool isDeviceIdAttestationRequested(const KeymasterArguments& params) { in isDeviceIdAttestationRequested()
1015 const String16& name, const KeymasterArguments& params, int32_t* _aidl_return) { in attestKey()
1071 const KeymasterArguments& params, int32_t* _aidl_return) { in attestDeviceIds()
1176 const KeymasterArguments& params, int64_t rootSid, int64_t fingerprintSid, in importWrappedKey()
DAndroid.bp155 "KeymasterArguments.cpp",
Dkeymaster_worker.cpp35 using AndroidKeymasterArguments = android::security::keymaster::KeymasterArguments;
/system/security/keystore/include/keystore/
DKeymasterArguments.h27 struct KeymasterArguments : public Parcelable { struct
28 KeymasterArguments(){}; in KeymasterArguments() function
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;
50 …int generateKey(IKeystoreKeyCharacteristicsCallback cb, String alias, in KeymasterArguments argume… in generateKey()
54 …int importKey(IKeystoreKeyCharacteristicsCallback cb, String alias, in KeymasterArguments argument… in importKey()
59 in KeymasterArguments params, in byte[] entropy, int uid); in begin()
60 …int update(in IKeystoreOperationResultCallback cb, IBinder token, in KeymasterArguments params, in… in update()
61 …int finish(in IKeystoreOperationResultCallback cb, IBinder token, in KeymasterArguments params, in… in finish()
67 …int attestKey(in IKeystoreCertificateChainCallback cb, String alias, in KeymasterArguments params); in attestKey()
68 int attestDeviceIds(in IKeystoreCertificateChainCallback cb, in KeymasterArguments params); in attestDeviceIds()
71 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()
214 binder_result = service->finish(promise, handle, KeymasterArguments(params), 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()
269 binder_result = service->finish(promise, handle, KeymasterArguments(params), in sign()
/system/hardware/interfaces/wifi/keystore/1.0/vts/functional/
DVtsHalWifiKeystoreV1_0TargetTest.cpp160 promise, keyName16, KeymasterArguments(key_parameters.hidl_data()), entropy, in generateKey()