Home
last modified time | relevance | path

Searched refs:attestationChallenge (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/keystore/java/android/security/keystore/
DAttestationUtils.java103 Context context, @NonNull int[] idTypes, @NonNull byte[] attestationChallenge) throws in prepareAttestationArgumentsForDeviceId() argument
110 return prepareAttestationArguments(context, idTypes, attestationChallenge); in prepareAttestationArgumentsForDeviceId()
118 @NonNull int[] idTypes, @NonNull byte[] attestationChallenge) throws in prepareAttestationArguments() argument
121 if (attestationChallenge == null) { in prepareAttestationArguments()
125 attestArgs.addBytes(KeymasterDefs.KM_TAG_ATTESTATION_CHALLENGE, attestationChallenge); in prepareAttestationArguments()
215 @NonNull int[] idTypes, @NonNull byte[] attestationChallenge) throws in attestDeviceIds() argument
218 context, idTypes, attestationChallenge); in attestDeviceIds()
DKeyGenParameterSpec.java296 byte[] attestationChallenge, in KeyGenParameterSpec() argument
345 mAttestationChallenge = Utils.cloneIfNotNull(attestationChallenge); in KeyGenParameterSpec()
1237 public Builder setAttestationChallenge(byte[] attestationChallenge) { in setAttestationChallenge() argument
1238 mAttestationChallenge = attestationChallenge; in setAttestationChallenge()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java5468 final byte[] attestationChallenge = keySpec.getAttestationChallenge(); in generateKeyPair()
5469 if (attestationChallenge != null) { in generateKeyPair()
5471 alias, attestationChallenge, attestationUtilsFlags, attestationChain); in generateKeyPair()