Home
last modified time | relevance | path

Searched refs:RootOfTrust (Results 1 – 6 of 6) sorted by relevance

/cts/tests/security/src/android/keystore/cts/
DRootOfTrust.java26 public class RootOfTrust { class
40 public RootOfTrust(ASN1Encodable asn1Encodable) throws CertificateParsingException { in RootOfTrust() method in RootOfTrust
44 public RootOfTrust(ASN1Encodable asn1Encodable, boolean strictParsing) in RootOfTrust() method in RootOfTrust
61 RootOfTrust(byte[] verifiedBootKey, boolean deviceLocked, int verifiedBootState) { in RootOfTrust() method in RootOfTrust
125 public RootOfTrust build() { in build()
126 return new RootOfTrust(verifiedBootKey, deviceLocked, verifiedBootState); in build()
DEatAttestation.java37 final RootOfTrust rootOfTrust;
51 RootOfTrust.Builder rootOfTrustBuilder = new RootOfTrust.Builder(); in EatAttestation()
125 public RootOfTrust getRootOfTrust() { in getRootOfTrust()
176 return RootOfTrust.KM_VERIFIED_BOOT_VERIFIED; in eatBootStateTypeToVerifiedBootState()
179 ? RootOfTrust.KM_VERIFIED_BOOT_SELF_SIGNED in eatBootStateTypeToVerifiedBootState()
180 : RootOfTrust.KM_VERIFIED_BOOT_UNVERIFIED; in eatBootStateTypeToVerifiedBootState()
DAsn1Attestation.java83 public RootOfTrust getRootOfTrust() { in getRootOfTrust()
DAttestation.java118 public abstract RootOfTrust getRootOfTrust(); in getRootOfTrust()
DAuthorizationList.java194 private RootOfTrust rootOfTrust;
299 rootOfTrust = new RootOfTrust(value, strictParsing); in AuthorizationList()
679 public RootOfTrust getRootOfTrust() { in getRootOfTrust()
/cts/tests/tests/keystore/src/android/keystore/cts/
DKeyAttestationTest.java33 import static android.keystore.cts.RootOfTrust.KM_VERIFIED_BOOT_VERIFIED;
1128 RootOfTrust rootOfTrust = attestation.getRootOfTrust(); in checkRootOfTrust()