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:HcfMac
(Results
1 - 10
of
10
) sorted by relevance
/base/security/crypto_framework/interfaces/inner_api/crypto_operation/
H
A
D
mac.h
25
typedef struct
HcfMac
HcfMac
;
typedef
27
struct
HcfMac
{
struct
30
HcfResult (*init)(
HcfMac
*self, const HcfSymKey *key);
32
HcfResult (*update)(
HcfMac
*self, HcfBlob *input);
34
HcfResult (*doFinal)(
HcfMac
*self, HcfBlob *output);
36
uint32_t (*getMacLength)(
HcfMac
*self);
38
const char *(*getAlgoName)(
HcfMac
*self);
45
HcfResult HcfMacCreate(const char *algoName,
HcfMac
**mac);
/base/security/crypto_framework/frameworks/crypto_operation/
H
A
D
mac.c
31
HcfMac
base;
70
static HcfResult Init(
HcfMac
*self, const HcfSymKey *key)
in Init()
84
static HcfResult Update(
HcfMac
*self, HcfBlob *input)
in Update()
98
static HcfResult DoFinal(
HcfMac
*self, HcfBlob *output)
in DoFinal()
112
static uint32_t GetMacLength(
HcfMac
*self)
in GetMacLength()
126
static const char *GetAlgoName(
HcfMac
*self)
in GetAlgoName()
154
HcfResult HcfMacCreate(const char *algoName,
HcfMac
**mac)
in HcfMacCreate()
190
*mac = (
HcfMac
*)returnMacApi;
in HcfMacCreate()
/base/security/crypto_framework/frameworks/js/napi/crypto/inc/
H
A
D
napi_mac.h
30
explicit NapiMac(
HcfMac
*macObj);
32
HcfMac
*GetMac();
49
HcfMac
*macObj_ = nullptr;
/base/security/crypto_framework/test/unittest/src/
H
A
D
crypto_sm3_mac_test.cpp
85
HcfMac
*macObj = nullptr;
in HWTEST_F()
95
HcfMac
*macObj = nullptr;
in HWTEST_F()
104
HcfMac
*macObj = nullptr;
in HWTEST_F()
113
HcfMac
*macObj = nullptr;
in HWTEST_F()
127
HcfMac
*macObj = nullptr;
in HWTEST_F()
141
HcfMac
*macObj = nullptr;
in HWTEST_F()
165
HcfMac
*macObj = nullptr;
in HWTEST_F()
181
HcfMac
*macObj = nullptr;
in HWTEST_F()
209
HcfMac
*macObj = nullptr;
in HWTEST_F()
239
HcfMac
*macOb
in HWTEST_F()
[all...]
H
A
D
crypto_mac_test.cpp
90
HcfMac
*macObj = nullptr;
in HWTEST_F()
100
HcfMac
*macObj = nullptr;
in HWTEST_F()
109
HcfMac
*macObj = nullptr;
in HWTEST_F()
118
HcfMac
*macObj = nullptr;
in HWTEST_F()
132
HcfMac
*macObj = nullptr;
in HWTEST_F()
146
HcfMac
*macObj = nullptr;
in HWTEST_F()
170
HcfMac
*macObj = nullptr;
in HWTEST_F()
186
HcfMac
*macObj = nullptr;
in HWTEST_F()
214
HcfMac
*macObj = nullptr;
in HWTEST_F()
244
HcfMac
*macOb
in HWTEST_F()
[all...]
/base/security/crypto_framework/frameworks/cj/include/
H
A
D
mac_impl.h
30
explicit MacImpl(
HcfMac
*macObj);
38
HcfMac
*macObj_ = nullptr;
/base/security/crypto_framework/test/fuzztest/crypto_operation/hcfmaccreate_fuzzer/
H
A
D
hcfmaccreate_fuzzer.cpp
32
HcfMac
*macObj = nullptr;
in TestMacConvertSymKey()
50
HcfMac
*macObj = nullptr;
in TestMac()
81
HcfMac
*macObj = nullptr;
in HcfMacCreateFuzzTest()
/base/security/crypto_framework/frameworks/js/napi/crypto/src/
H
A
D
napi_mac.cpp
48
HcfMac
*mac = nullptr;
122
HcfMac
*macObj = context->mac;
in MacInitExecute()
147
HcfMac
*macObj = context->mac;
in MacUpdateExecute()
172
HcfMac
*macObj = context->mac;
in MacDoFinalExecute()
398
NapiMac::NapiMac(
HcfMac
*macObj)
in NapiMac()
408
HcfMac
*NapiMac::GetMac()
in GetMac()
458
HcfMac
*mac = napiMac->GetMac();
in JsMacInitSync()
521
HcfMac
*mac = napiMac->GetMac();
in JsMacUpdateSync()
572
HcfMac
*mac = napiMac->GetMac();
in JsMacDoFinalSync()
612
HcfMac
*ma
in JsGetMacLength()
[all...]
/base/security/crypto_framework/frameworks/cj/src/
H
A
D
mac_impl.cpp
20
MacImpl::MacImpl(
HcfMac
*macObj)
in MacImpl()
H
A
D
crypto_ffi.cpp
601
HcfMac
*macObj = nullptr;
in FFiOHOSCryptoMacConstructor()
Completed in 11 milliseconds