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:curveType
(Results
1 - 13
of
13
) sorted by relevance
/base/security/device_auth/services/protocol/src/pake_protocol/pake_protocol_ec_common/
H
A
D
pake_protocol_ec_common.c
35
if (params->
curveType
== CURVE_256) {
in GenerateEsk()
37
} else if (params->
curveType
== CURVE_25519) {
in GenerateEsk()
48
LOGE("Unsupported curve: %d.", params->
curveType
);
in GenerateEsk()
58
uint32_t keyBufferLen = (params->
curveType
== CURVE_256) ? (params->innerKeyLen * 2) : (params->innerKeyLen);
in InitEcPakeParams()
91
Algorithm alg = (params->
curveType
== CURVE_256) ? P256 : X25519;
in GenerateEcPakeParams()
117
uint32_t validKeyBufferLen = (params->
curveType
== CURVE_256) ? (PAKE_EC_KEY_LEN * 2) : (PAKE_EC_KEY_LEN);
in AgreeEcSharedSecret()
124
Algorithm alg = (params->
curveType
== CURVE_256) ? P256 : X25519;
in AgreeEcSharedSecret()
/base/security/device_auth/services/session_manager/inc/session/v2/auth_sub_session/protocol_lib/
H
A
D
ec_speke_protocol.h
29
int32_t
curveType
;
member
/base/security/device_auth/services/session_manager/src/session/v2/auth_sub_session/protocol_lib/
H
A
D
ec_speke_protocol.c
57
EcSpekeCurveType
curveType
;
member
224
if (params->
curveType
== CURVE_TYPE_256) {
in EcSpekeCalBase()
228
} else if (params->
curveType
== CURVE_TYPE_25519) {
in EcSpekeCalBase()
232
LOGE("Unsupported curve type: %d", params->
curveType
);
in EcSpekeCalBase()
255
if (params->
curveType
== CURVE_TYPE_256) {
in EcSpekeCalEskSelf()
261
} else if (params->
curveType
== CURVE_TYPE_25519) {
in EcSpekeCalEskSelf()
271
LOGE("Unsupported curve type: %d", params->
curveType
);
in EcSpekeCalEskSelf()
282
if (params->
curveType
== CURVE_TYPE_256) {
in EcSpekeCalEpkSelf()
286
} else if (params->
curveType
== CURVE_TYPE_25519) {
in EcSpekeCalEpkSelf()
290
LOGE("Unsupported curve type: %d", params->
curveType
);
in EcSpekeCalEpkSelf()
1127
IsCurveTypeValid(int32_t
curveType
)
IsCurveTypeValid()
argument
[all...]
/base/security/device_auth/services/legacy/authenticators/inc/account_related/
H
A
D
account_version_util.h
50
CurveType
curveType
;
member
/base/security/device_auth/services/protocol/inc/pake_protocol/
H
A
D
pake_defs.h
69
CurveType
curveType
; // default: CURVE_NONE
member
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/pake_task/standard_exchange_task/
H
A
D
common_standard_bind_exchange.c
101
Algorithm alg = (pakeParams->baseParams.
curveType
== CURVE_256) ? P256 : ED25519;
in GenerateKeyPairIfNotExist()
202
Algorithm alg = (pakeParams->baseParams.
curveType
== CURVE_256) ? P256 : ED25519;
in GenerateSignInfo()
382
Algorithm alg = (pakeParams->baseParams.
curveType
== CURVE_256) ? P256 : ED25519;
in VerifySignInfo()
417
Algorithm alg = (pakeParams->baseParams.
curveType
== CURVE_256) ? P256 : ED25519;
in SaveAuthInfo()
/base/security/device_auth/services/legacy/authenticators/src/account_related/auth/pake_v2_auth_task/
H
A
D
pake_v2_auth_task_common.c
435
params->pakeParams.
curveType
= verInfo->
curveType
;
in InitPakeAuthParams()
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/pake_task/
H
A
D
pake_task_common.c
301
params->baseParams.
curveType
= CURVE_25519;
in FillDasPakeParams()
/base/security/device_auth/services/key_agree_sdk/src/
H
A
D
key_agree_session.c
755
spekeSession->baseParam.
curveType
= CURVE_256;
in InitSpekeSession()
760
spekeSession->baseParam.
curveType
= CURVE_25519;
in InitSpekeSession()
/base/security/device_auth/services/protocol/src/pake_protocol/pake_v2_protocol/
H
A
D
pake_v2_protocol_common.c
139
params->
curveType
= CURVE_NONE;
in FillDefaultValue()
387
tmpSharedSecret.length = (params->
curveType
== CURVE_256) ? (params->innerKeyLen * 2) : (params->innerKeyLen);
in GenerateSharedSecret()
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/creds_manager/
H
A
D
das_standard_token_manager.c
299
Algorithm alg = (params->baseParams.
curveType
== CURVE_256) ? P256 : ED25519;
in ComputeAndSavePskInner()
/base/security/device_auth/services/protocol/src/pake_protocol/pake_v1_protocol/
H
A
D
pake_v1_protocol_common.c
145
params->
curveType
= CURVE_NONE;
in FillDefaultValue()
/base/security/device_auth/services/session_manager/src/session/v2/
H
A
D
dev_session_v2.c
1066
EcSpekeCurveType
curveType
= (cred->proofType == CERTIFICATED) ? CURVE_TYPE_256 : CURVE_TYPE_25519;
in CreateEcSpekeSubSession()
local
1078
EcSpekeInitParams params = {
curveType
, authIdBuff, osAccountId };
in CreateEcSpekeSubSession()
Completed in 16 milliseconds