Test case for crypt random number generator

This commit is contained in:
Sergey Markelov 2023-02-13 17:47:07 -07:00 committed by Nathan Moinvaziri
parent d87de80493
commit de9e622832

View File

@ -12,6 +12,8 @@
#include "mz_os.h"
#include "mz_crypt.h"
#include <string>
#include <gtest/gtest.h>
#include <stdio.h> /* printf, snprintf */
@ -31,6 +33,16 @@ static void convert_buffer_to_hex_string(uint8_t *buf, int32_t buf_size, char *h
hex_string[p] = 0;
}
TEST(crypt, rand) {
uint8_t random_bytes[256];
memset(random_bytes, 0, sizeof(random_bytes));
EXPECT_EQ(mz_crypt_rand(random_bytes, sizeof(random_bytes)), sizeof(random_bytes));
EXPECT_NE(std::string((char *)random_bytes).find_first_not_of('\0'), std::string::npos);
}
TEST(crypt, sha1) {
void *sha1 = NULL;
uint8_t hash1[MZ_HASH_SHA1_SIZE];