Home
last modified time | relevance | path

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

/frameworks/base/keystore/java/android/security/keystore/
DAttestationUtils.java253 final KeymasterCertificateChain outChain = new KeymasterCertificateChain(); in attestDeviceIds() local
254 final int errorCode = KeyStore.getInstance().attestDeviceIds(attestArgs, outChain); in attestDeviceIds()
261 return parseCertificateChain(outChain); in attestDeviceIds()
DAndroidKeyStoreKeyPairGeneratorSpi.java606 KeymasterCertificateChain outChain = new KeymasterCertificateChain(); in getAttestationChain() local
607 int errorCode = mKeyStore.attestKey(privateKeyAlias, args, outChain); in getAttestationChain()
612 Collection<byte[]> chain = outChain.getCertificates(); in getAttestationChain()
/frameworks/base/keystore/java/android/security/
DKeyStore.java1128 String alias, KeymasterArguments params, KeymasterCertificateChain outChain) { in attestKey() argument
1135 if (outChain == null) { in attestKey()
1136 outChain = new KeymasterCertificateChain(); in attestKey()
1143 outChain.shallowCopyFrom(result.getCertificateChain()); in attestKey()
1157 public int attestDeviceIds(KeymasterArguments params, KeymasterCertificateChain outChain) { in attestDeviceIds() argument
1164 if (outChain == null) { in attestDeviceIds()
1165 outChain = new KeymasterCertificateChain(); in attestDeviceIds()
1172 outChain.shallowCopyFrom(result.getCertificateChain()); in attestDeviceIds()