Home
last modified time | relevance | path

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

/system/extras/verity/
DKeystoreSigner.java87 private ASN1Integer formatVersion; field in BootKeystore
95 this.formatVersion = new ASN1Integer(FORMAT_VERSION); in BootKeystore()
111 v.add(formatVersion); in getInnerKeystore()
118 v.add(formatVersion); in toASN1Primitive()
128 formatVersion = (ASN1Integer) sequence.getObjectAt(0); in parse()
129 if (formatVersion.getValue().intValue() != FORMAT_VERSION) { in parse()
DBootSignature.java66 private ASN1Integer formatVersion; field in BootSignature
82 this.formatVersion = new ASN1Integer(FORMAT_VERSION); in BootSignature()
96 formatVersion = (ASN1Integer) sequence.getObjectAt(0); in BootSignature()
97 if (formatVersion.getValue().intValue() != FORMAT_VERSION) { in BootSignature()
181 v.add(formatVersion); in toASN1Primitive()
Dverify_boot_signature.c56 ASN1_INTEGER *formatVersion; member
64 ASN1_SIMPLE(BootSignature, formatVersion, ASN1_INTEGER),
183 ASN1_INTEGER_to_BN(bs->formatVersion, &value); in validate_signature_block()