Home
last modified time | relevance | path

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

/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/
DV4Signature.java38 public final byte log2BlockSize; // only 12 (block size 4096) supported now field in V4Signature.HashingInfo
42 HashingInfo(int hashAlgorithm, byte log2BlockSize, byte[] salt, byte[] rawRootHash) { in HashingInfo() argument
44 this.log2BlockSize = log2BlockSize; in HashingInfo()
52 final byte log2BlockSize = buffer.get(); in fromByteArray()
55 return new HashingInfo(hashAlgorithm, log2BlockSize, salt, rawRootHash); in fromByteArray()
63 buffer.put(this.log2BlockSize); in toByteArray()
233 buffer.put(hashingInfo.log2BlockSize); in getSignedData()