Rename crypto unit tests.

This commit is contained in:
Nathan Moinvaziri 2023-04-26 09:47:27 -07:00
parent d7048c3768
commit faf14369d9

View File

@ -193,7 +193,7 @@ TEST(crypt, aes128) {
EXPECT_STREQ((char *)buf, test);
}
TEST(crypt, aes128_cbc_iv) {
TEST(crypt, aes128_cbc) {
void *aes = NULL;
const char *key = "awesomekeythisis";
const char *test = "youknowitsogrowi";
@ -229,7 +229,7 @@ TEST(crypt, aes128_cbc_iv) {
}
TEST(crypt, aes128_gcm_iv) {
TEST(crypt, aes128_gcm) {
#if GTEST_OS_WINDOWS && _WIN32_WINNT <= _WIN32_WINNT_XP
GTEST_SKIP() << "SHA256 not supported on Windows XP";
#else