Lines Matching refs:cipher
27 auto algoPtr = std::make_unique<cipher::integrity::AlgoSHA1>(sik); in TEST()
35 cipher::integrity::AlgoSHA1::SHA1_96_AUTHCODE_LENGTH)); in TEST()
65 output.resize(cipher::integrity::AlgoSHA1::SHA1_96_AUTHCODE_LENGTH); in TEST()
113 output.resize(cipher::integrity::AlgoSHA1::SHA1_96_AUTHCODE_LENGTH); in TEST()
129 auto algoPtr = std::make_unique<cipher::integrity::AlgoSHA1>(sik); in TEST()
164 auto algoPtr = std::make_unique<cipher::integrity::AlgoSHA1>(sik); in TEST()
189 auto algoPtr = std::make_unique<cipher::integrity::AlgoSHA256>(sik); in TEST()
198 cipher::integrity::AlgoSHA256::SHA256_128_AUTHCODE_LENGTH)); in TEST()
228 output.resize(cipher::integrity::AlgoSHA256::SHA256_128_AUTHCODE_LENGTH); in TEST()
277 output.resize(cipher::integrity::AlgoSHA256::SHA256_128_AUTHCODE_LENGTH); in TEST()
293 auto algoPtr = std::make_unique<cipher::integrity::AlgoSHA256>(sik); in TEST()
329 auto algoPtr = std::make_unique<cipher::integrity::AlgoSHA256>(sik); in TEST()
367 auto cryptPtr = std::make_unique<cipher::crypt::AlgoAES128>(k2); in TEST()
371 auto cipher = cryptPtr->encryptPayload(payload); in TEST() local
380 cipher.data())) in TEST()
388 cipher.size() + cipher::crypt::AlgoAES128::AESCBC128BlockSize); in TEST()
393 cipher.data() + cipher::crypt::AlgoAES128::AESCBC128ConfHeader, in TEST()
394 cipher.size() - cipher::crypt::AlgoAES128::AESCBC128ConfHeader)) in TEST()
433 payload.size() + cipher::crypt::AlgoAES128::AESCBC128BlockSize); in TEST()
436 cipher::crypt::AlgoAES128::AESCBC128ConfHeader)) in TEST()
460 ctx, output.data() + cipher::crypt::AlgoAES128::AESCBC128ConfHeader, in TEST()
467 output.resize(cipher::crypt::AlgoAES128::AESCBC128ConfHeader + outputLen); in TEST()
475 auto cryptPtr = std::make_unique<cipher::crypt::AlgoAES128>(k2); in TEST()