Home
last modified time | relevance | path

Searched refs:encryptedFastAuth (Results 1 – 2 of 2) sorted by relevance

/foundation/communication/dsoftbus/core/authentication/src/
Dauth_session_message.c391 static void ParseFastAuthValue(AuthSessionInfo *info, const char *encryptedFastAuth, AuthDeviceKeyI… in ParseFastAuthValue() argument
395 encryptedFastAuth, strlen(encryptedFastAuth)) != SOFTBUS_OK) { in ParseFastAuthValue()
399 uint32_t bytesLen = strlen(encryptedFastAuth) >> 1; in ParseFastAuthValue()
429 char encryptedFastAuth[ENCRYPTED_FAST_AUTH_MAX_LEN] = {0}; in UnpackFastAuth() local
430 if (!JSON_GetStringFromOject(obj, FAST_AUTH, encryptedFastAuth, ENCRYPTED_FAST_AUTH_MAX_LEN)) { in UnpackFastAuth()
434 AUTH_LOGE(AUTH_FSM, "unpack fastAuthTag=%{public}s", encryptedFastAuth); in UnpackFastAuth()
457 ParseFastAuthValue(info, encryptedFastAuth, &deviceKey); in UnpackFastAuth()
/foundation/communication/dsoftbus/tests/core/authentication/unittest/
Dauth_session_message_test.cpp191 const char *encryptedFastAuth = "encryptedFastAuth"; variable
198 ParseFastAuthValue(&info, encryptedFastAuth, &deviceKey);
201 JSON_AddStringToObject(obj, FAST_AUTH, encryptedFastAuth);