Searched refs:rawRootHash (Results 1 – 2 of 2) sorted by relevance
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/ |
D | V4Signature.java | 40 public final byte[] rawRootHash; // salted digest of the first Merkle tree page field in V4Signature.HashingInfo 42 HashingInfo(int hashAlgorithm, byte log2BlockSize, byte[] salt, byte[] rawRootHash) { in HashingInfo() argument 46 this.rawRootHash = rawRootHash; in HashingInfo() 54 byte[] rawRootHash = readBytes(buffer); in fromByteArray() 55 return new HashingInfo(hashAlgorithm, log2BlockSize, salt, rawRootHash); in fromByteArray() 60 + bytesSize(this.rawRootHash); in toByteArray() 65 writeBytes(buffer, this.rawRootHash); in toByteArray() 226 hashingInfo.salt) + bytesSize(hashingInfo.rawRootHash) + bytesSize( in getSignedData() 235 writeBytes(buffer, hashingInfo.rawRootHash); in getSignedData()
|
D | V4SchemeVerifier.java | 124 verifyRootHashAndTree(apk, signerInfo, hashingInfo.rawRootHash, tree); in verify()
|