Home
last modified time | relevance | path

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

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
DVerifyElf.java251 byte[] magicByte = readByteArrayOffset(bytes, offset, HwSignHead.ELF_MAGIC.length); in getElfSignBlockData()
253 byte[] versionByte = readByteArrayOffset(bytes, offset, HwSignHead.VERSION.length); in getElfSignBlockData()
266 byte[] blockSizeByte = readByteArrayOffset(bytes, offset, intByteLength); in getElfSignBlockData()
268 byte[] blockNumByte = readByteArrayOffset(bytes, offset, intByteLength); in getElfSignBlockData()
284 byte[] blockByte = readByteArrayOffset(bytes, offset, HwBlockHead.ELF_BLOCK_LEN); in getSignBlock()
290 … byte[] value = readByteArrayOffset(bytes, elfBlockData.getBlockStart() + blockOffset, length); in getSignBlock()
297 private byte[] readByteArrayOffset(byte[] bytes, int offset, int length) { in readByteArrayOffset() method in VerifyElf