Searched refs:readLengthPrefixedByteArray (Results 1 – 4 of 4) sorted by relevance
20 import static com.android.apksig.internal.apk.ApkSigningBlockUtils.readLengthPrefixedByteArray;304 byte[] publicKeyBytes = readLengthPrefixedByteArray(signerBlock); in parseSigner()314 byte[] sigBytes = readLengthPrefixedByteArray(signature); in parseSigner()410 byte[] encodedCert = readLengthPrefixedByteArray(certificates); in parseSigner()458 byte[] digestBytes = readLengthPrefixedByteArray(digest); in parseSigner()
22 import static com.android.apksig.internal.apk.ApkSigningBlockUtils.readLengthPrefixedByteArray;113 byte[] signature = readLengthPrefixedByteArray(nodeBytes); in readSigningCertificateLineage()136 byte[] encodedCert = readLengthPrefixedByteArray(signedData); in readSigningCertificateLineage()
259 byte[] publicKeyBytes = ApkSigningBlockUtils.readLengthPrefixedByteArray(signerBlock); in parseSigner()269 byte[] sigBytes = ApkSigningBlockUtils.readLengthPrefixedByteArray(signature); in parseSigner()348 byte[] encodedCert = ApkSigningBlockUtils.readLengthPrefixedByteArray(certificates); in parseSigner()397 byte[] digestBytes = ApkSigningBlockUtils.readLengthPrefixedByteArray(digest); in parseSigner()
389 public static byte[] readLengthPrefixedByteArray(ByteBuffer buf) throws ApkFormatException { in readLengthPrefixedByteArray() method in ApkSigningBlockUtils