Home
last modified time | relevance | path

Searched refs:keyId (Results 1 – 3 of 3) 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/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()