HomeSort by relevance Sort by last modified time
    Searched full:attestation_challenge (Results 1 - 25 of 72) sorted by null

1 2 3

  /system/keymaster/tests/
attestation_record_test.cpp 75 keymaster_blob_t attestation_challenge = {}; local
80 &keymaster_security_level, &attestation_challenge,
83 delete[] attestation_challenge.data;
  /hardware/interfaces/keymaster/3.0/vts/functional/
attestation_record.cpp 124 ASN1_OCTET_STRING* attestation_challenge; member in struct:android::hardware::keymaster::V3_0::km_key_description
135 ASN1_SIMPLE(KM_KEY_DESCRIPTION, attestation_challenge, ASN1_OCTET_STRING),
256 // attestation_challenge, software_enforced, tee_enforced and unique_id.
262 hidl_vec<uint8_t>* attestation_challenge,
277 auto& chall = record->attestation_challenge;
278 attestation_challenge->resize(chall->length);
279 memcpy(attestation_challenge->data(), chall->data, chall->length);
attestation_record.h 48 hidl_vec<uint8_t>* attestation_challenge,
keymaster_tags.h 145 DECLARE_TYPED_TAG(ATTESTATION_CHALLENGE);
  /hardware/interfaces/keymaster/4.0/support/
attestation_record.cpp 122 ASN1_OCTET_STRING* attestation_challenge; member in struct:android::hardware::keymaster::V4_0::km_key_description
133 ASN1_SIMPLE(KM_KEY_DESCRIPTION, attestation_challenge, ASN1_OCTET_STRING),
252 // attestation_challenge, software_enforced, tee_enforced and unique_id.
258 hidl_vec<uint8_t>* attestation_challenge,
273 auto& chall = record->attestation_challenge;
274 attestation_challenge->resize(chall->length);
275 memcpy(attestation_challenge->data(), chall->data, chall->length);
  /system/keymaster/km_openssl/
attestation_record.cpp 428 keymaster_blob_t attestation_challenge = {nullptr, 0};
429 if (!attestation_params.GetTagValue(TAG_ATTESTATION_CHALLENGE, &attestation_challenge))
432 if (attestation_challenge.data_length > kMaximumAttestationChallengeLength)
435 if (!ASN1_OCTET_STRING_set(key_desc->attestation_challenge, attestation_challenge.data,
436 attestation_challenge.data_length))
707 // attestation_challenge, software_enforced, tee_enforced and unique_id.
713 keymaster_blob_t* attestation_challenge,
730 attestation_challenge->data =
731 dup_buffer(record->attestation_challenge->data, record->attestation_challenge->length)
    [all...]
  /hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
attestation_record.h 50 hidl_vec<uint8_t>* attestation_challenge,
keymaster_tags.h 114 DECLARE_TYPED_TAG(ATTESTATION_CHALLENGE);
388 case Tag::ATTESTATION_CHALLENGE:
  /frameworks/base/keystore/tests/src/android/security/
ParcelableKeyGenParameterSpecTest.java 56 static final byte[] ATTESTATION_CHALLENGE = new byte[] {'c', 'h'};
76 .setAttestationChallenge(ATTESTATION_CHALLENGE)
104 assertThat(spec.getAttestationChallenge(), is(ATTESTATION_CHALLENGE));
  /system/keymaster/include/keymaster/
attestation_record.h 152 ASN1_OCTET_STRING* attestation_challenge; member in struct:keymaster::km_key_description
163 ASN1_SIMPLE(KM_KEY_DESCRIPTION, attestation_challenge, ASN1_OCTET_STRING),
250 keymaster_blob_t* attestation_challenge,
  /device/generic/goldfish/keymaster/trusty/
trusty_keymaster_device.cpp 377 keymaster_blob_t attestation_challenge = {}; local
378 request.attest_params.GetTagValue(TAG_ATTESTATION_CHALLENGE, &attestation_challenge);
379 if (attestation_challenge.data_length > kMaximumAttestationChallengeLength) {
381 attestation_challenge.data_length, kMaximumAttestationChallengeLength);
  /system/core/trusty/keymaster/
trusty_keymaster_device.cpp 387 keymaster_blob_t attestation_challenge = {}; local
388 request.attest_params.GetTagValue(TAG_ATTESTATION_CHALLENGE, &attestation_challenge);
389 if (attestation_challenge.data_length > kMaximumAttestationChallengeLength) {
391 attestation_challenge.data_length, kMaximumAttestationChallengeLength);
  /prebuilts/vndk/v27/arm/arch-arm-armv7-a-neon/shared/vndk-core/
android.hardware.keymaster@3.0.so 
libkeymaster_portable.so 
  /prebuilts/vndk/v27/arm64/arch-arm-armv7-a-neon/shared/vndk-core/
android.hardware.keymaster@3.0.so 
libkeymaster_portable.so 
  /external/nos/host/generic/nugget/proto/nugget/app/keymaster/
keymaster_defs.proto 82 ATTESTATION_CHALLENGE = 0x902c4; // (TagType:BYTES | 708)
  /system/keymaster/contexts/
soft_keymaster_device.cpp 1084 keymaster_blob_t attestation_challenge = {}; local
    [all...]
  /hardware/interfaces/keymaster/3.0/
IKeymasterDevice.hal 173 * @param attestParams Parameters for the attestation, notably Tag::ATTESTATION_CHALLENGE.
types.hal 122 ATTESTATION_CHALLENGE = TagType:BYTES | 708, /** Used to provide challenge in attestation */
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-core/
android.hardware.keymaster@3.0.so 
libkeymaster_portable.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-core/
android.hardware.keymaster@3.0.so 
libkeymaster_portable.so 
  /system/keymaster/ng/include/
keymaster_tags.h 163 DECLARE_TYPED_TAG(ATTESTATION_CHALLENGE);

Completed in 599 milliseconds

1 2 3