Home
last modified time | relevance | path

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

/ohos5.0/base/security/device_auth/test/fuzztest/session_manager/session/v2/expand_sub_session/expandsubsession_fuzzer/
H A Dexpandsubsession_fuzzer.cpp59 (void)CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self); in ExpandSubSessionTest01()
70 res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &server); in ExpandSubSessionTest02()
98 (void)CreateExpandSubSession(nullptr, &g_encryptionKey, &self); in ExpandSubSessionTest03()
106 (void)CreateExpandSubSession(&invalidNonce, &g_encryptionKey, &self); in ExpandSubSessionTest04()
113 (void)CreateExpandSubSession(&g_nonce, nullptr, &self); in ExpandSubSessionTest05()
121 (void)CreateExpandSubSession(&invalidEncKey, &invalidEncKey, &self); in ExpandSubSessionTest06()
127 (void)CreateExpandSubSession(&g_nonce, &g_encryptionKey, nullptr); in ExpandSubSessionTest07()
134 (void)CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self); in ExpandSubSessionTest08()
144 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self); in ExpandSubSessionTest09()
154 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self); in ExpandSubSessionTest10()
[all …]
/ohos5.0/base/security/device_auth/test/unittest/tdd_framework/unit_test/services/session_manager/session/v2/expand_sub_session/
H A Dexpand_sub_session_test.cpp106 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
120 res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &server);
161 int32_t res = CreateExpandSubSession(nullptr, &g_encryptionKey, &self);
176 int32_t res = CreateExpandSubSession(&g_nonce, nullptr, &self);
197 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
208 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
221 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
234 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
249 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
262 int32_t res = CreateExpandSubSession(&g_nonce, &g_encryptionKey, &self);
[all …]
/ohos5.0/base/security/device_auth/services/session_manager/inc/session/v2/expand_sub_session/
H A Dexpand_sub_session.h42 int32_t CreateExpandSubSession(const Uint8Buff *nonce, const Uint8Buff *encKey, ExpandSubSession **…
/ohos5.0/base/security/device_auth/services/session_manager/src/session/v2/expand_sub_session/
H A Dexpand_sub_session.c503 int32_t CreateExpandSubSession(const Uint8Buff *nonce, const Uint8Buff *encKey, ExpandSubSession **… in CreateExpandSubSession() function
/ohos5.0/base/security/device_auth/services/session_manager/src/session/v2/
H A Ddev_session_v2.c1848 int32_t res = CreateExpandSubSession(&impl->salt, &impl->sessionKey, &impl->expandSubSession); in CreateExpandSubSessionByCred()