Searched refs:readLengthPrefixedByteArray (Results 1 – 4 of 4) sorted by relevance
20 import static com.android.apksig.internal.apk.ApkSigningBlockUtils.readLengthPrefixedByteArray;301 byte[] publicKeyBytes = readLengthPrefixedByteArray(signerBlock); in parseSigner()311 byte[] sigBytes = readLengthPrefixedByteArray(signature); in parseSigner()407 byte[] encodedCert = readLengthPrefixedByteArray(certificates); in parseSigner()451 byte[] digestBytes = readLengthPrefixedByteArray(digest); in parseSigner()
22 import static com.android.apksig.internal.apk.ApkSigningBlockUtils.readLengthPrefixedByteArray;120 byte[] signature = readLengthPrefixedByteArray(nodeBytes); in readSigningCertificateLineage()143 byte[] encodedCert = readLengthPrefixedByteArray(signedData); in readSigningCertificateLineage()
255 byte[] publicKeyBytes = ApkSigningBlockUtils.readLengthPrefixedByteArray(signerBlock); in parseSigner()265 byte[] sigBytes = ApkSigningBlockUtils.readLengthPrefixedByteArray(signature); in parseSigner()344 byte[] encodedCert = ApkSigningBlockUtils.readLengthPrefixedByteArray(certificates); in parseSigner()388 byte[] digestBytes = ApkSigningBlockUtils.readLengthPrefixedByteArray(digest); in parseSigner()
355 public static byte[] readLengthPrefixedByteArray(ByteBuffer buf) throws ApkFormatException { in readLengthPrefixedByteArray() method in ApkSigningBlockUtils