Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/utils/
H A Dwifi_encryption_util.cpp320 uint8_t nonce[AES_256_NONCE_SIZE] = { 0 }; in EncryptParamSet()
322 if (HexStringToVec(encryptedData.IV, nonce, AES_256_NONCE_SIZE, nonceLength) != 0) { in EncryptParamSet()
349 uint8_t nonce[AES_256_NONCE_SIZE] = { 0 }; in DecryptParamSet()
351 if (HexStringToVec(encryptedData.IV, nonce, AES_256_NONCE_SIZE, nonceLength) != 0) { in DecryptParamSet()
H A Dwifi_encryption_util.h30 constexpr uint32_t AES_256_NONCE_SIZE = 32; variable