Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:SIGN_HEAD_LEN
(Results
1 - 8
of
8
) sorted by relevance
/developtools/hapsigner/hapsigntool_cpp/hap/entity/src/
H
A
D
sign_head.cpp
26
const int SignHead::
SIGN_HEAD_LEN
= 32;
member in OHOS::SignatureTools::SignHead
43
std::vector<int8_t> signHead(
SIGN_HEAD_LEN
, 0);
in GetSignHead()
75
ByteBuffer bf = ByteBuffer(SignHead::
SIGN_HEAD_LEN
);
in GetSignHeadLittleEndian()
87
int8_t ret[SignHead::
SIGN_HEAD_LEN
];
in GetSignHeadLittleEndian()
88
bf.GetData(0, ret, SignHead::
SIGN_HEAD_LEN
);
in GetSignHeadLittleEndian()
89
std::vector<int8_t> byte(ret, ret + SignHead::
SIGN_HEAD_LEN
);
in GetSignHeadLittleEndian()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/
H
A
D
HwSignHead.java
33
public static final int
SIGN_HEAD_LEN
= 32;
field in HwSignHead
64
byte[] signHead = new byte[
SIGN_HEAD_LEN
];
in getSignHead()
101
ByteBuffer bf = ByteBuffer.allocate(
SIGN_HEAD_LEN
).order(ByteOrder.LITTLE_ENDIAN);
in getSignHeadLittleEndian()
/developtools/hapsigner/hapsigntool_cpp/hap/entity/include/
H
A
D
block_head.h
31
static const int32_t
SIGN_HEAD_LEN
= 32;
member in OHOS::SignatureTools::BlockHead
H
A
D
sign_head.h
29
static const int
SIGN_HEAD_LEN
;
member in OHOS::SignatureTools::SignHead
/developtools/hapsigner/hapsigntool_cpp/hap/verify/src/
H
A
D
verify_elf.cpp
265
blockStart = bytes.size() - SignHead::
SIGN_HEAD_LEN
- blockSize;
in GetSignBlockData()
275
offset = bytes.size() - SignHead::
SIGN_HEAD_LEN
;
in CheckMagicAndVersion()
347
length = bytes.size() - SignHead::
SIGN_HEAD_LEN
- blockOffset;
in GetBinSignBlock()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
H
A
D
VerifyElf.java
250
int offset = bytes.length - HwSignHead.
SIGN_HEAD_LEN
;
in getElfSignBlockData()
275
int blockStart = bytes.length - HwSignHead.
SIGN_HEAD_LEN
- blockSize;
in getElfSignBlockData()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/sign/
H
A
D
SignBin.java
169
long size = FileUtils.getFileLen(outputFile) - FileUtils.getFileLen(inputFile) + HwSignHead.
SIGN_HEAD_LEN
;
in writeSignHeadDataToOutputFile()
/developtools/hapsigner/hapsigntool_cpp/hap/sign/src/
H
A
D
sign_bin.cpp
149
int64_t size = FileUtils::GetFileLen(outputFile) - FileUtils::GetFileLen(inputFile) + SignHead::
SIGN_HEAD_LEN
;
in WriteSignHeadDataToOutputFile()
Completed in 5 milliseconds