Searched refs:BootSignature (Results 1 – 6 of 6) sorted by relevance
/system/extras/verity/ |
D | verify_boot_signature.c | 61 } BootSignature; typedef 63 ASN1_SEQUENCE(BootSignature) = { 64 ASN1_SIMPLE(BootSignature, formatVersion, ASN1_INTEGER), 65 ASN1_SIMPLE(BootSignature, certificate, X509), 66 ASN1_SIMPLE(BootSignature, algorithmIdentifier, X509_ALGOR), 67 ASN1_SIMPLE(BootSignature, authenticatedAttributes, AuthAttrs), 68 ASN1_SIMPLE(BootSignature, signature, ASN1_OCTET_STRING) 69 } ASN1_SEQUENCE_END(BootSignature) 71 IMPLEMENT_ASN1_FUNCTIONS(BootSignature) 130 static int read_signature(int fd, off64_t offset, BootSignature **bs) in read_signature() [all …]
|
D | Android.mk | 41 LOCAL_SRC_FILES := BootSignature.java VeritySigner.java Utils.java 42 LOCAL_MODULE := BootSignature 43 LOCAL_JAR_MANIFEST := BootSignature.mf 49 LOCAL_SRC_FILES := BootSignature.java KeystoreSigner.java Utils.java 80 LOCAL_REQUIRED_MODULES := BootSignature
|
D | BootSignature.java | 64 public class BootSignature extends ASN1Object class 81 public BootSignature(String target, int length) { in BootSignature() method in BootSignature 91 public BootSignature(byte[] signature) in BootSignature() method in BootSignature 239 BootSignature bootsig = new BootSignature(target, image.length); in doSignature() 266 BootSignature bootsig = new BootSignature(signature); in verifySignature()
|
D | BootSignature.mf | 1 Main-Class: com.android.verity.BootSignature
|
D | boot_signer | 8 java -Xmx512M -jar "$BOOTSIGNER_HOME"/framework/BootSignature.jar "$@"
|
D | KeystoreSigner.java | 89 private BootSignature signature; 140 signature = new BootSignature(sig.getEncoded()); in parse() 152 signature = new BootSignature("keystore", innerKeystore.length); in sign()
|