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:VerifyElf
(Results
1 - 11
of
11
) sorted by relevance
/developtools/hapsigner/hapsigntool_cpp/hap/verify/src/
H
A
D
verify_elf.cpp
33
const int8_t
VerifyElf
::SIGNATURE_BLOCK = 0;
34
const int8_t
VerifyElf
::PROFILE_NOSIGNED_BLOCK = 1;
35
const int8_t
VerifyElf
::PROFILE_SIGNED_BLOCK = 2;
36
const int8_t
VerifyElf
::KEY_ROTATION_BLOCK = 3;
37
const int8_t
VerifyElf
::CODESIGNING_BLOCK_TYPE = 3;
39
bool
VerifyElf
::Verify(Options* options)
in Verify()
74
bool
VerifyElf
::VerifyElfFile(const std::string& elfFile, std::vector<int8_t>& profileVec,
in VerifyElfFile()
95
bool verifyElfFlag = VerifyCodeSignature::
VerifyElf
(elfFile, codesign.GetOffset(), codesign.GetLength(),
in VerifyElfFile()
105
bool
VerifyElf
::VerifyP7b(std::unordered_map<int8_t, SigningBlock>& signBlockMap,
in VerifyP7b()
141
bool
VerifyElf
[all...]
H
A
D
verify_bin.cpp
30
if (!
VerifyElf
::CheckParams(options)) {
in Verify()
35
bool checkSignFileFlag =
VerifyElf
::CheckSignFile(filePath);
in Verify()
62
bool getSignBlockInfoFlag =
VerifyElf
::GetSignBlockInfo(binFile, signBlockInfo, BIN);
in VerifyBinFile()
69
bool verifyP7bFlag =
VerifyElf
::VerifyP7b(signBlockInfo.GetSignBlockMap(), options, pkcs7Context,
in VerifyBinFile()
/developtools/hapsigner/hapsigntool_cpp_test/unittest/elfVerify/
H
A
D
verify_elf_test.cpp
74
VerifyElf
verifyElf;
in HWTEST_F()
90
VerifyElf
verifyElf;
in HWTEST_F()
110
VerifyElf
verifyElf;
in HWTEST_F()
130
VerifyElf
verifyElf;
in HWTEST_F()
150
VerifyElf
verifyElf;
in HWTEST_F()
171
VerifyElf
verifyElf;
in HWTEST_F()
192
VerifyElf
verifyElf;
in HWTEST_F()
213
VerifyElf
verifyElf;
in HWTEST_F()
234
VerifyElf
verifyElf;
in HWTEST_F()
255
VerifyElf
verifyEl
in HWTEST_F()
[all...]
/developtools/hapsigner/hapsigntool_cpp_test/unittest/codeSigning/sign/
H
A
D
verify_code_signature_test.cpp
317
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
337
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
357
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
377
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
397
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
417
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
437
bool flag = VerifyCodeSignature::
VerifyElf
(file, offset, length, fileFormat, profileContent);
in HWTEST_F()
/developtools/hapsigner/hapsigntool_cpp_test/fuzztest/process_cmd/processcmd019_fuzzer/
H
A
D
processcmd019_fuzzer.cpp
50
bool
VerifyElf
(const uint8_t* data, size_t size)
in VerifyElf()
function
136
OHOS::SignatureTools::
VerifyElf
(data, size);
in LLVMFuzzerTestOneInput()
/developtools/hapsigner/hapsigntool_cpp/hap/verify/include/
H
A
D
verify_elf.h
30
class
VerifyElf
{
class
/developtools/hapsigner/hapsigntool_cpp/codesigning/sign/include/
H
A
D
verify_code_signature.h
38
static bool
VerifyElf
(std::string file, int64_t offset, int64_t length,
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/api/
H
A
D
SignToolServiceImpl.java
27
import com.ohos.hapsigntool.hap.verify.
VerifyElf
;
334
VerifyElf
verifyElf = new
VerifyElf
();
in verifyHap()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
H
A
D
VerifyElf.java
60
public class
VerifyElf
{
class
61
private static final Logger LOGGER = LogManager.getLogger(
VerifyElf
.class);
/developtools/hapsigner/hapsigntool_cpp/codesigning/sign/src/
H
A
D
verify_code_signature.cpp
49
bool VerifyCodeSignature::
VerifyElf
(std::string file, int64_t offset, int64_t length,
in VerifyElf()
function in OHOS::SignatureTools::VerifyCodeSignature
/developtools/hapsigner/hapsigntool_cpp/api/src/
H
A
D
sign_tool_service_impl.cpp
675
VerifyElf
verifyElf;
in VerifyHapSigner()
Completed in 8 milliseconds