HomeSort by relevance Sort by last modified time
    Searched full:attestationchallenge (Results 1 - 7 of 7) sorted by null

  /cts/tests/security/src/android/keystore/cts/
Attestation.java 49 private final byte[] attestationChallenge;
70 attestationChallenge =
107 return attestationChallenge;
131 String stringChallenge = new String(attestationChallenge);
135 s.append(" (base64): [" + BaseEncoding.base64().encode(attestationChallenge) + "]");
  /frameworks/base/keystore/java/android/security/keystore/
AttestationUtils.java 103 Context context, @NonNull int[] idTypes, @NonNull byte[] attestationChallenge) throws
110 return prepareAttestationArguments(context, idTypes, attestationChallenge);
118 @NonNull int[] idTypes, @NonNull byte[] attestationChallenge) throws
121 if (attestationChallenge == null) {
125 attestArgs.addBytes(KeymasterDefs.KM_TAG_ATTESTATION_CHALLENGE, attestationChallenge);
204 * @param attestationChallenge a blob to include in the certificate alongside the device
215 @NonNull int[] idTypes, @NonNull byte[] attestationChallenge) throws
218 context, idTypes, attestationChallenge);
KeyGenParameterSpec.java 296 byte[] attestationChallenge,
345 mAttestationChallenge = Utils.cloneIfNotNull(attestationChallenge);
    [all...]
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java 174 String alias, byte[] attestationChallenge,
180 if (attestationChallenge == null) {
188 mContext, idAttestationFlags, attestationChallenge);
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
KeyManagementTest.java 399 byte[] attestationChallenge = new byte[] {0x01, 0x02, 0x03};
405 .setAttestationChallenge(attestationChallenge);
436 validateAttestationRecord(attestation, attestationChallenge);
  /hardware/interfaces/keymaster/4.0/
IKeymasterDevice.hal     [all...]
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java     [all...]

Completed in 1186 milliseconds