Home
last modified time | relevance | path

Searched refs:attestKey (Results 1 – 10 of 10) sorted by relevance

/hardware/interfaces/keymaster/4.1/support/include/keymasterV4_1/
DKeymaster4.h105 Return<void> attestKey(const hidl_vec<uint8_t>& keyToAttest, in attestKey() function
108 return km4_0_dev_->attestKey(keyToAttest, attestParams, _hidl_cb); in attestKey()
DKeymaster3.h92 Return<void> attestKey(const hidl_vec<uint8_t>& keyToAttest,
/hardware/interfaces/security/keymint/aidl/vts/functional/
DVtsRemotelyProvisionedComponentTests.cpp218 AttestationKey attestKey; in TEST_P() local
219 attestKey.keyBlob = std::move(privateKeyBlob); in TEST_P()
220 attestKey.issuerSubjectName = make_name_from_str("Android Keystore Key"); in TEST_P()
231 auto result = keyMint->generateKey(keyDesc.vector_data(), attestKey, &creationResult); in TEST_P()
/hardware/interfaces/keymaster/4.1/support/
DKeymaster3.cpp195 Return<void> Keymaster3::attestKey(const hidl_vec<uint8_t>& keyToAttest, in attestKey() function in android::hardware::keymaster::V4_1::support::Keymaster3
201 auto rc = km3_dev_->attestKey(keyToAttest, convert(attestParams), cb); in attestKey()
/hardware/interfaces/keymaster/4.1/
Dtypes.hal31 * DEVICE_UNIQUE_ATTESTATION is an argument to IKeymasterDevice::attestKey(). It indicates that
DIKeymasterDevice.hal35 * @4.1::IKeymasterDevice::attestKey() must produce attestations with keymasterVersion 41. An
/hardware/interfaces/keymaster/4.0/
Dtypes.hal617 * C is the value of Tag::ATTESTATION_APPLICATION_ID that is provided to attestKey().
619 * R is 1 if Tag::RESET_SINCE_ID_ROTATION was provided to attestKey or 0 if the tag was not
635 * Tag::ATTESTATION_CHALLENGE is used to deliver a "challenge" value to the attestKey() method,
637 * attestKey().
645 * only with attestKey().
671 * Android, to attestKey(). This field must be set only when requesting attestation of the
684 * Android, to attestKey(). This field must be set only when requesting attestation of the
697 * in Android, to attestKey(). This field must be set only when requesting attestation of the
721 * Tag::ATTESTATION_ID_IMEI provides the IMEIs for all radios on the device to attestKey().
734 * Tag::ATTESTATION_ID_MEID provides the MEIDs for all radios on the device to attestKey().
[all …]
DIKeymasterDevice.hal538 * with the @3.0::IKeymasterDevice::importKey. See attestKey() for documentation of the
799 attestKey(vec<uint8_t> keyToAttest, vec<KeyParameter> attestParams)
810 * use an old key blob with getKeyCharacteristics(), exportKey(), attestKey() or begin() must
/hardware/interfaces/keymaster/3.0/
DIKeymasterDevice.hal178 attestKey(vec<uint8_t> keyToAttest, vec<KeyParameter> attestParams)
185 * attestKey() or begin() will result in keymaster returning
/hardware/interfaces/keymaster/3.0/vts/functional/
Dkeymaster_hidl_hal_test.cpp704 auto rc = keymaster_->attestKey( in AttestKey()