mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Test case for crypt random number generator
This commit is contained in:
parent
d87de80493
commit
de9e622832
@ -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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user