Home
last modified time | relevance | path

Searched refs:keyId (Results 1 – 5 of 5) sorted by relevance

/system/hardware/interfaces/wifi/keystore/1.0/
DIKeystore.hal49 * |keyId|.
51 * @param keyId the key identifier associated with the credential.
58 getPublicKey(string keyId)
63 * the credential identified by |keyId|. This is a raw RSA or ECDSA
67 * @param keyId the key identifier associated with the credential.
74 sign(string keyId, vec<uint8_t> dataToSign)
/system/security/provisioner/support/
Drkpd_client.cpp130 uint32_t keyId) in GetRegistrationCallback() argument
131 : keyPromise_(std::move(keyPromise)), keyId_(keyId), called_() {} in GetRegistrationCallback()
172 getRpcKeyFuture(const sp<IRemotelyProvisionedComponent>& rpc, int32_t keyId) { in getRpcKeyFuture() argument
189 auto cb = sp<GetRegistrationCallback>::make(std::move(keyPromise), keyId); in getRpcKeyFuture()
200 int32_t keyId, int32_t timeout_sec) { in getRpcKey() argument
201 auto rpcKeyFuture = getRpcKeyFuture(rpc, keyId); in getRpcKey()
/system/security/provisioner/support/include/rkp/support/
Drkpd_client.h34 getRpcKeyFuture(const sp<IRemotelyProvisionedComponent>& rpc, int32_t keyId);
37 int32_t keyId, int32_t timeout_sec = 10);
/system/hardware/interfaces/wifi/keystore/1.0/default/include/wifikeystorehal/
Dkeystore.h33 const hidl_string& keyId, getPublicKey_cb _hidl_cb) override;
35 const hidl_string& keyId, const hidl_vec<uint8_t>& dataToSign,
/system/hardware/interfaces/wifi/keystore/1.0/default/
Dkeystore.cpp350 Return<void> Keystore::getPublicKey(const hidl_string& keyId, getPublicKey_cb _hidl_cb) { in getPublicKey() argument
351 if (auto ks2_pubkey = keyStore2GetPubKey(keyId)) { in getPublicKey()
360 Return<void> Keystore::sign(const hidl_string& keyId, const hidl_vec<uint8_t>& dataToSign, in sign() argument
362 if (auto ks2_result = keyStore2Sign(keyId, dataToSign)) { in sign()