2020-04-27 20:28:04 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/File.h>
|
2020-04-08 00:24:50 +03:00
|
|
|
#include <LibCrypto/Authentication/HMAC.h>
|
2020-04-27 20:28:04 +03:00
|
|
|
#include <LibCrypto/Cipher/AES.h>
|
2020-04-07 10:02:07 +03:00
|
|
|
#include <LibCrypto/Hash/MD5.h>
|
2020-04-27 20:28:04 +03:00
|
|
|
#include <LibLine/Editor.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
static const char* secret_key = "WellHelloFreinds";
|
2020-04-07 10:02:07 +03:00
|
|
|
static const char* suite = nullptr;
|
2020-04-27 20:28:04 +03:00
|
|
|
static const char* filename = nullptr;
|
|
|
|
static int key_bits = 128;
|
|
|
|
static bool binary = false;
|
|
|
|
static bool interactive = false;
|
|
|
|
static bool run_tests = false;
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
static bool encrypting = true;
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
constexpr const char* DEFAULT_DIGEST_SUITE { "HMAC-MD5" };
|
2020-04-07 10:02:07 +03:00
|
|
|
constexpr const char* DEFAULT_HASH_SUITE { "MD5" };
|
|
|
|
constexpr const char* DEFAULT_CIPHER_SUITE { "AES_CBC" };
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
// listAllTests
|
2020-04-07 10:02:07 +03:00
|
|
|
// Cipher
|
2020-04-27 20:28:04 +03:00
|
|
|
int aes_cbc_tests();
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
// Hash
|
|
|
|
int md5_tests();
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
// Authentication
|
|
|
|
int hmac_md5_tests();
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
// stop listing tests
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
void print_buffer(const ByteBuffer& buffer, int split)
|
2020-04-27 20:28:04 +03:00
|
|
|
{
|
|
|
|
for (size_t i = 0; i < buffer.size(); ++i) {
|
2020-04-07 10:02:07 +03:00
|
|
|
if (split > 0) {
|
|
|
|
if (i % split == 0 && i)
|
|
|
|
puts("");
|
|
|
|
}
|
2020-04-27 20:28:04 +03:00
|
|
|
printf("%02x", buffer[i]);
|
|
|
|
}
|
|
|
|
puts("");
|
|
|
|
}
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
int run(Function<void(const char*, size_t)> fn)
|
|
|
|
{
|
|
|
|
if (interactive) {
|
|
|
|
Line::Editor editor;
|
|
|
|
editor.initialize();
|
|
|
|
for (;;) {
|
|
|
|
auto line = editor.get_line("> ");
|
|
|
|
fn(line.characters(), line.length());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (filename == nullptr) {
|
|
|
|
puts("must specify a file name");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!Core::File::exists(filename)) {
|
|
|
|
puts("File does not exist");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
auto file = Core::File::open(filename, Core::IODevice::OpenMode::ReadOnly);
|
|
|
|
auto buffer = file->read_all();
|
|
|
|
fn((const char*)buffer.data(), buffer.size());
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
void aes_cbc(const char* message, size_t len)
|
|
|
|
{
|
|
|
|
auto buffer = ByteBuffer::wrap(message, len);
|
|
|
|
// FIXME: Take iv as an optional parameter
|
2020-04-07 13:12:27 +03:00
|
|
|
auto iv = ByteBuffer::create_zeroed(Crypto::Cipher::AESCipher::block_size());
|
2020-04-27 20:28:04 +03:00
|
|
|
|
|
|
|
if (encrypting) {
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher(secret_key, key_bits, Crypto::Cipher::Intent::Encryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
|
|
|
|
auto enc = cipher.create_aligned_buffer(buffer.size());
|
|
|
|
cipher.encrypt(buffer, enc, iv);
|
|
|
|
|
|
|
|
if (binary)
|
|
|
|
printf("%.*s", (int)enc.size(), enc.data());
|
|
|
|
else
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(enc, Crypto::Cipher::AESCipher::block_size());
|
2020-04-27 20:28:04 +03:00
|
|
|
} else {
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher(secret_key, key_bits, Crypto::Cipher::Intent::Decryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
auto dec = cipher.create_aligned_buffer(buffer.size());
|
|
|
|
cipher.decrypt(buffer, dec, iv);
|
|
|
|
printf("%.*s\n", (int)dec.size(), dec.data());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
void md5(const char* message, size_t len)
|
|
|
|
{
|
2020-04-07 13:12:27 +03:00
|
|
|
auto digest = Crypto::Hash::MD5::hash((const u8*)message, len);
|
2020-04-07 10:02:07 +03:00
|
|
|
if (binary)
|
2020-04-07 13:12:27 +03:00
|
|
|
printf("%.*s", (int)Crypto::Hash::MD5::digest_size(), digest.data);
|
2020-04-07 10:02:07 +03:00
|
|
|
else
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(ByteBuffer::wrap(digest.data, Crypto::Hash::MD5::digest_size()), -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void hmac_md5(const char* message, size_t len)
|
|
|
|
{
|
|
|
|
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac(secret_key);
|
|
|
|
auto mac = hmac.process((const u8*)message, len);
|
|
|
|
if (binary)
|
|
|
|
printf("%.*s", (int)hmac.DigestSize, mac.data);
|
|
|
|
else
|
|
|
|
print_buffer(ByteBuffer::wrap(mac.data, hmac.DigestSize), -1);
|
2020-04-07 10:02:07 +03:00
|
|
|
}
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
auto main(int argc, char** argv) -> int
|
|
|
|
{
|
2020-04-07 10:02:07 +03:00
|
|
|
const char* mode = nullptr;
|
2020-04-27 20:28:04 +03:00
|
|
|
Core::ArgsParser parser;
|
2020-04-07 10:02:07 +03:00
|
|
|
parser.add_positional_argument(mode, "mode to operate in ('list' to see modes and descriptions)", "mode");
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
parser.add_option(secret_key, "Set the secret key (default key is 'WellHelloFriends')", "secret-key", 'k', "secret key");
|
2020-04-27 20:28:04 +03:00
|
|
|
parser.add_option(key_bits, "Size of the key", "key-bits", 'b', "key-bits");
|
|
|
|
parser.add_option(filename, "Read from file", "file", 'f', "from file");
|
|
|
|
parser.add_option(binary, "Force binary output", "force-binary", 0);
|
2020-04-07 10:02:07 +03:00
|
|
|
parser.add_option(interactive, "REPL mode", "interactive", 'i');
|
2020-04-27 20:28:04 +03:00
|
|
|
parser.add_option(run_tests, "Run tests for the specified suite", "tests", 't');
|
2020-04-07 10:02:07 +03:00
|
|
|
parser.add_option(suite, "Set the suite used", "suite-name", 'n', "suite name");
|
2020-04-27 20:28:04 +03:00
|
|
|
parser.parse(argc, argv);
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
StringView mode_sv { mode };
|
|
|
|
if (mode_sv == "list") {
|
2020-04-08 00:24:50 +03:00
|
|
|
puts("test-crypto modes");
|
|
|
|
puts("\tdigest - Access digest (authentication) functions");
|
2020-04-07 10:02:07 +03:00
|
|
|
puts("\thash - Access hash functions");
|
|
|
|
puts("\tencrypt -- Access encryption functions");
|
|
|
|
puts("\tdecrypt -- Access decryption functions");
|
|
|
|
puts("\tlist -- List all known modes");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (mode_sv == "hash") {
|
|
|
|
if (suite == nullptr)
|
|
|
|
suite = DEFAULT_HASH_SUITE;
|
2020-04-27 20:28:04 +03:00
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
if (StringView(suite) == "MD5") {
|
|
|
|
if (run_tests)
|
|
|
|
return md5_tests();
|
|
|
|
return run(md5);
|
|
|
|
} else {
|
|
|
|
printf("unknown hash function '%s'\n", suite);
|
2020-04-27 20:28:04 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2020-04-07 10:02:07 +03:00
|
|
|
}
|
2020-04-08 00:24:50 +03:00
|
|
|
if (mode_sv == "digest") {
|
|
|
|
if (suite == nullptr)
|
|
|
|
suite = DEFAULT_DIGEST_SUITE;
|
|
|
|
|
|
|
|
if (StringView(suite) == "HMAC-MD5") {
|
|
|
|
if (run_tests)
|
|
|
|
return hmac_md5_tests();
|
|
|
|
return run(hmac_md5);
|
|
|
|
} else {
|
|
|
|
printf("unknown hash function '%s'\n", suite);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 10:02:07 +03:00
|
|
|
encrypting = mode_sv == "encrypt";
|
|
|
|
if (encrypting || mode_sv == "decrypt") {
|
|
|
|
if (suite == nullptr)
|
|
|
|
suite = DEFAULT_CIPHER_SUITE;
|
|
|
|
|
|
|
|
if (StringView(suite) == "AES_CBC") {
|
|
|
|
if (run_tests)
|
|
|
|
return aes_cbc_tests();
|
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (!Crypto::Cipher::AESCipher::KeyType::is_valid_key_size(key_bits)) {
|
2020-04-07 10:02:07 +03:00
|
|
|
printf("Invalid key size for AES: %d\n", key_bits);
|
2020-04-27 20:28:04 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2020-04-07 10:02:07 +03:00
|
|
|
if (strlen(secret_key) != (size_t)key_bits / 8) {
|
|
|
|
printf("Key must be exactly %d bytes long\n", key_bits / 8);
|
2020-04-27 20:28:04 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2020-04-07 10:02:07 +03:00
|
|
|
return run(aes_cbc);
|
|
|
|
} else {
|
|
|
|
printf("Unknown cipher suite '%s'\n", suite);
|
|
|
|
return 1;
|
2020-04-27 20:28:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
printf("Unknown mode '%s', check out the list of modes\n", mode);
|
|
|
|
return 1;
|
2020-04-27 20:28:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define I_TEST(thing) \
|
|
|
|
{ \
|
|
|
|
printf("Testing " #thing "... "); \
|
|
|
|
}
|
|
|
|
#define PASS printf("PASS\n")
|
|
|
|
#define FAIL(reason) printf("FAIL: " #reason "\n")
|
|
|
|
|
|
|
|
ByteBuffer operator""_b(const char* string, size_t length)
|
|
|
|
{
|
|
|
|
dbg() << "Create byte buffer of size " << length;
|
|
|
|
return ByteBuffer::copy(string, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
// tests go after here
|
|
|
|
// please be reasonable with orders kthx
|
2020-04-08 00:24:50 +03:00
|
|
|
void aes_cbc_test_name();
|
2020-04-27 20:28:04 +03:00
|
|
|
void aes_cbc_test_encrypt();
|
|
|
|
void aes_cbc_test_decrypt();
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
void md5_test_name();
|
2020-04-07 10:02:07 +03:00
|
|
|
void md5_test_hash();
|
|
|
|
void md5_test_consecutive_updates();
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
void hmac_md5_test_name();
|
|
|
|
void hmac_md5_test_process();
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
int aes_cbc_tests()
|
|
|
|
{
|
2020-04-08 00:24:50 +03:00
|
|
|
aes_cbc_test_name();
|
2020-04-07 10:02:07 +03:00
|
|
|
if (encrypting) {
|
|
|
|
aes_cbc_test_encrypt();
|
|
|
|
} else {
|
|
|
|
aes_cbc_test_decrypt();
|
|
|
|
}
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
void aes_cbc_test_name()
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC class name));
|
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("WellHelloFriends", 128, Crypto::Cipher::Intent::Encryption);
|
|
|
|
if (cipher.class_name() != "AES_CBC")
|
|
|
|
FAIL(Invalid class name);
|
|
|
|
else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
|
2020-04-27 20:28:04 +03:00
|
|
|
void aes_cbc_test_encrypt()
|
|
|
|
{
|
|
|
|
auto test_it = [](auto& cipher, auto& result) {
|
|
|
|
auto in = "This is a test! This is another test!"_b;
|
|
|
|
auto out = cipher.create_aligned_buffer(in.size());
|
2020-04-07 13:12:27 +03:00
|
|
|
auto iv = ByteBuffer::create_zeroed(Crypto::Cipher::AESCipher::block_size());
|
2020-04-27 20:28:04 +03:00
|
|
|
cipher.encrypt(in, out, iv);
|
|
|
|
if (out.size() != sizeof(result))
|
|
|
|
FAIL(size mismatch);
|
|
|
|
else if (memcmp(out.data(), result, out.size()) != 0) {
|
|
|
|
FAIL(invalid data);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(out, Crypto::Cipher::AESCipher::block_size());
|
2020-04-27 20:28:04 +03:00
|
|
|
} else
|
|
|
|
PASS;
|
|
|
|
};
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC with 128 bit key | Encrypt))
|
|
|
|
u8 result[] {
|
|
|
|
0xb8, 0x06, 0x7c, 0xf2, 0xa9, 0x56, 0x63, 0x58, 0x2d, 0x5c, 0xa1, 0x4b, 0xc5, 0xe3, 0x08,
|
|
|
|
0xcf, 0xb5, 0x93, 0xfb, 0x67, 0xb6, 0xf7, 0xaf, 0x45, 0x34, 0x64, 0x70, 0x9e, 0xc9, 0x1a,
|
|
|
|
0x8b, 0xd3, 0x70, 0x45, 0xf0, 0x79, 0x65, 0xca, 0xb9, 0x03, 0x88, 0x72, 0x1c, 0xdd, 0xab,
|
|
|
|
0x45, 0x6b, 0x1c
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("WellHelloFriends", 128, Crypto::Cipher::Intent::Encryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
test_it(cipher, result);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC with 192 bit key | Encrypt))
|
|
|
|
u8 result[] {
|
|
|
|
0xae, 0xd2, 0x70, 0xc4, 0x9c, 0xaa, 0x83, 0x33, 0xd3, 0xd3, 0xac, 0x11, 0x65, 0x35, 0xf7,
|
|
|
|
0x19, 0x48, 0x7c, 0x7a, 0x8a, 0x95, 0x64, 0xe7, 0xc6, 0x0a, 0xdf, 0x10, 0x06, 0xdc, 0x90,
|
|
|
|
0x68, 0x51, 0x09, 0xd7, 0x3b, 0x48, 0x1b, 0x8a, 0xd3, 0x50, 0x09, 0xba, 0xfc, 0xde, 0x11,
|
|
|
|
0xe0, 0x3f, 0xcb
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("Well Hello Friends! whf!", 192, Crypto::Cipher::Intent::Encryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
test_it(cipher, result);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC with 256 bit key | Encrypt))
|
|
|
|
u8 result[] {
|
|
|
|
0x0a, 0x44, 0x4d, 0x62, 0x9e, 0x8b, 0xd8, 0x11, 0x80, 0x48, 0x2a, 0x32, 0x53, 0x61, 0xe7,
|
|
|
|
0x59, 0x62, 0x55, 0x9e, 0xf4, 0xe6, 0xad, 0xea, 0xc5, 0x0b, 0xf6, 0xbc, 0x6a, 0xcb, 0x9c,
|
|
|
|
0x47, 0x9f, 0xc2, 0x21, 0xe6, 0x19, 0x62, 0xc3, 0x75, 0xca, 0xab, 0x2d, 0x18, 0xa1, 0x54,
|
|
|
|
0xd1, 0x41, 0xe6
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("WellHelloFriendsWellHelloFriends", 256, Crypto::Cipher::Intent::Encryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
test_it(cipher, result);
|
|
|
|
}
|
|
|
|
// TODO: Test non-CMS padding options
|
|
|
|
}
|
|
|
|
void aes_cbc_test_decrypt()
|
|
|
|
{
|
|
|
|
auto test_it = [](auto& cipher, auto& result, auto result_len) {
|
|
|
|
auto true_value = "This is a test! This is another test!";
|
|
|
|
auto in = ByteBuffer::copy(result, result_len);
|
|
|
|
auto out = cipher.create_aligned_buffer(in.size());
|
2020-04-07 13:12:27 +03:00
|
|
|
auto iv = ByteBuffer::create_zeroed(Crypto::Cipher::AESCipher::block_size());
|
2020-04-27 20:28:04 +03:00
|
|
|
cipher.decrypt(in, out, iv);
|
|
|
|
if (out.size() != strlen(true_value)) {
|
|
|
|
FAIL(size mismatch);
|
|
|
|
printf("Expected %zu bytes but got %zu\n", strlen(true_value), out.size());
|
|
|
|
} else if (memcmp(out.data(), true_value, strlen(true_value)) != 0) {
|
|
|
|
FAIL(invalid data);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(out, Crypto::Cipher::AESCipher::block_size());
|
2020-04-27 20:28:04 +03:00
|
|
|
} else
|
|
|
|
PASS;
|
|
|
|
};
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC with 128 bit key | Decrypt))
|
|
|
|
u8 result[] {
|
|
|
|
0xb8, 0x06, 0x7c, 0xf2, 0xa9, 0x56, 0x63, 0x58, 0x2d, 0x5c, 0xa1, 0x4b, 0xc5, 0xe3, 0x08,
|
|
|
|
0xcf, 0xb5, 0x93, 0xfb, 0x67, 0xb6, 0xf7, 0xaf, 0x45, 0x34, 0x64, 0x70, 0x9e, 0xc9, 0x1a,
|
|
|
|
0x8b, 0xd3, 0x70, 0x45, 0xf0, 0x79, 0x65, 0xca, 0xb9, 0x03, 0x88, 0x72, 0x1c, 0xdd, 0xab,
|
|
|
|
0x45, 0x6b, 0x1c
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("WellHelloFriends", 128, Crypto::Cipher::Intent::Decryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
test_it(cipher, result, 48);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC with 192 bit key | Decrypt))
|
|
|
|
u8 result[] {
|
|
|
|
0xae, 0xd2, 0x70, 0xc4, 0x9c, 0xaa, 0x83, 0x33, 0xd3, 0xd3, 0xac, 0x11, 0x65, 0x35, 0xf7,
|
|
|
|
0x19, 0x48, 0x7c, 0x7a, 0x8a, 0x95, 0x64, 0xe7, 0xc6, 0x0a, 0xdf, 0x10, 0x06, 0xdc, 0x90,
|
|
|
|
0x68, 0x51, 0x09, 0xd7, 0x3b, 0x48, 0x1b, 0x8a, 0xd3, 0x50, 0x09, 0xba, 0xfc, 0xde, 0x11,
|
|
|
|
0xe0, 0x3f, 0xcb
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("Well Hello Friends! whf!", 192, Crypto::Cipher::Intent::Decryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
test_it(cipher, result, 48);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((AES CBC with 256 bit key | Decrypt))
|
|
|
|
u8 result[] {
|
|
|
|
0x0a, 0x44, 0x4d, 0x62, 0x9e, 0x8b, 0xd8, 0x11, 0x80, 0x48, 0x2a, 0x32, 0x53, 0x61, 0xe7,
|
|
|
|
0x59, 0x62, 0x55, 0x9e, 0xf4, 0xe6, 0xad, 0xea, 0xc5, 0x0b, 0xf6, 0xbc, 0x6a, 0xcb, 0x9c,
|
|
|
|
0x47, 0x9f, 0xc2, 0x21, 0xe6, 0x19, 0x62, 0xc3, 0x75, 0xca, 0xab, 0x2d, 0x18, 0xa1, 0x54,
|
|
|
|
0xd1, 0x41, 0xe6
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Cipher::AESCipher::CBCMode cipher("WellHelloFriendsWellHelloFriends", 256, Crypto::Cipher::Intent::Decryption);
|
2020-04-27 20:28:04 +03:00
|
|
|
test_it(cipher, result, 48);
|
|
|
|
}
|
|
|
|
// TODO: Test non-CMS padding options
|
|
|
|
}
|
2020-04-07 10:02:07 +03:00
|
|
|
|
|
|
|
int md5_tests()
|
|
|
|
{
|
2020-04-08 00:24:50 +03:00
|
|
|
md5_test_name();
|
2020-04-07 10:02:07 +03:00
|
|
|
md5_test_hash();
|
|
|
|
md5_test_consecutive_updates();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
void md5_test_name()
|
|
|
|
{
|
|
|
|
I_TEST((MD5 class name));
|
|
|
|
Crypto::Hash::MD5 md5;
|
|
|
|
if (md5.class_name() != "MD5")
|
|
|
|
FAIL(Invalid class name);
|
|
|
|
else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
|
2020-04-07 10:02:07 +03:00
|
|
|
void md5_test_hash()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | "Well hello friends"));
|
|
|
|
u8 result[] {
|
|
|
|
0xaf, 0x04, 0x3a, 0x08, 0x94, 0x38, 0x6e, 0x7f, 0xbf, 0x73, 0xe4, 0xaa, 0xf0, 0x8e, 0xee, 0x4c
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
auto digest = Crypto::Hash::MD5::hash("Well hello friends");
|
2020-04-07 10:02:07 +03:00
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (memcmp(result, digest.data, Crypto::Hash::MD5::digest_size()) != 0) {
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Invalid hash);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(ByteBuffer::wrap(digest.data, Crypto::Hash::MD5::digest_size()), -1);
|
2020-04-07 10:02:07 +03:00
|
|
|
} else {
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// RFC tests
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | ""));
|
|
|
|
u8 result[] {
|
|
|
|
0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
auto digest = Crypto::Hash::MD5::hash("");
|
2020-04-07 10:02:07 +03:00
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (memcmp(result, digest.data, Crypto::Hash::MD5::digest_size()) != 0) {
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Invalid hash);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(ByteBuffer::wrap(digest.data, Crypto::Hash::MD5::digest_size()), -1);
|
2020-04-07 10:02:07 +03:00
|
|
|
} else {
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | "a"));
|
|
|
|
u8 result[] {
|
|
|
|
0x0c, 0xc1, 0x75, 0xb9, 0xc0, 0xf1, 0xb6, 0xa8, 0x31, 0xc3, 0x99, 0xe2, 0x69, 0x77, 0x26, 0x61
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
auto digest = Crypto::Hash::MD5::hash("a");
|
2020-04-07 10:02:07 +03:00
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (memcmp(result, digest.data, Crypto::Hash::MD5::digest_size()) != 0) {
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Invalid hash);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(ByteBuffer::wrap(digest.data, Crypto::Hash::MD5::digest_size()), -1);
|
2020-04-07 10:02:07 +03:00
|
|
|
} else {
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | "abcdefghijklmnopqrstuvwxyz"));
|
|
|
|
u8 result[] {
|
|
|
|
0xc3, 0xfc, 0xd3, 0xd7, 0x61, 0x92, 0xe4, 0x00, 0x7d, 0xfb, 0x49, 0x6c, 0xca, 0x67, 0xe1, 0x3b
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
auto digest = Crypto::Hash::MD5::hash("abcdefghijklmnopqrstuvwxyz");
|
2020-04-07 10:02:07 +03:00
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (memcmp(result, digest.data, Crypto::Hash::MD5::digest_size()) != 0) {
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Invalid hash);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(ByteBuffer::wrap(digest.data, Crypto::Hash::MD5::digest_size()), -1);
|
2020-04-07 10:02:07 +03:00
|
|
|
} else {
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | Long Sequence));
|
|
|
|
u8 result[] {
|
|
|
|
0x57, 0xed, 0xf4, 0xa2, 0x2b, 0xe3, 0xc9, 0x55, 0xac, 0x49, 0xda, 0x2e, 0x21, 0x07, 0xb6, 0x7a
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
auto digest = Crypto::Hash::MD5::hash("12345678901234567890123456789012345678901234567890123456789012345678901234567890");
|
2020-04-07 10:02:07 +03:00
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (memcmp(result, digest.data, Crypto::Hash::MD5::digest_size()) != 0) {
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Invalid hash);
|
2020-04-07 13:12:27 +03:00
|
|
|
print_buffer(ByteBuffer::wrap(digest.data, Crypto::Hash::MD5::digest_size()), -1);
|
2020-04-07 10:02:07 +03:00
|
|
|
} else {
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void md5_test_consecutive_updates()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | Multiple Updates));
|
|
|
|
u8 result[] {
|
|
|
|
0xaf, 0x04, 0x3a, 0x08, 0x94, 0x38, 0x6e, 0x7f, 0xbf, 0x73, 0xe4, 0xaa, 0xf0, 0x8e, 0xee, 0x4c
|
|
|
|
};
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Hash::MD5 md5;
|
2020-04-07 10:02:07 +03:00
|
|
|
|
|
|
|
md5.update("Well");
|
|
|
|
md5.update(" hello ");
|
|
|
|
md5.update("friends");
|
|
|
|
auto digest = md5.digest();
|
|
|
|
|
2020-04-07 13:12:27 +03:00
|
|
|
if (memcmp(result, digest.data, Crypto::Hash::MD5::digest_size()) != 0)
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Invalid hash);
|
|
|
|
else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((MD5 Hashing | Reuse));
|
2020-04-07 13:12:27 +03:00
|
|
|
Crypto::Hash::MD5 md5;
|
2020-04-07 10:02:07 +03:00
|
|
|
|
|
|
|
md5.update("Well");
|
|
|
|
md5.update(" hello ");
|
|
|
|
md5.update("friends");
|
|
|
|
auto digest0 = md5.digest();
|
|
|
|
|
|
|
|
md5.update("Well");
|
|
|
|
md5.update(" hello ");
|
|
|
|
md5.update("friends");
|
|
|
|
auto digest1 = md5.digest();
|
|
|
|
|
2020-04-08 00:24:50 +03:00
|
|
|
if (memcmp(digest0.data, digest1.data, Crypto::Hash::MD5::digest_size()) != 0)
|
2020-04-07 10:02:07 +03:00
|
|
|
FAIL(Cannot reuse);
|
|
|
|
else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|
2020-04-08 00:24:50 +03:00
|
|
|
|
|
|
|
int hmac_md5_tests()
|
|
|
|
{
|
|
|
|
hmac_md5_test_name();
|
|
|
|
hmac_md5_test_process();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hmac_md5_test_name()
|
|
|
|
{
|
|
|
|
I_TEST((HMAC - MD5 | Class name));
|
|
|
|
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac("Well Hello Friends");
|
|
|
|
if (hmac.class_name() != "HMAC-MD5")
|
|
|
|
FAIL(Invalid class name);
|
|
|
|
else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hmac_md5_test_process()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
I_TEST((HMAC - MD5 | Basic));
|
|
|
|
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac("Well Hello Friends");
|
|
|
|
u8 result[] {
|
|
|
|
0x3b, 0x5b, 0xde, 0x30, 0x3a, 0x54, 0x7b, 0xbb, 0x09, 0xfe, 0x78, 0x89, 0xbc, 0x9f, 0x22, 0xa3
|
|
|
|
};
|
|
|
|
auto mac = hmac.process("Some bogus data");
|
|
|
|
if (memcmp(result, mac.data, hmac.DigestSize) != 0) {
|
|
|
|
FAIL(Invalid mac);
|
|
|
|
print_buffer(ByteBuffer::wrap(mac.data, hmac.DigestSize), -1);
|
|
|
|
} else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
I_TEST((HMAC - MD5 | Reuse));
|
|
|
|
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac("Well Hello Friends");
|
|
|
|
|
|
|
|
auto mac_0 = hmac.process("Some bogus data");
|
|
|
|
auto mac_1 = hmac.process("Some bogus data");
|
|
|
|
|
|
|
|
if (memcmp(mac_0.data, mac_1.data, hmac.DigestSize) != 0) {
|
|
|
|
FAIL(Cannot reuse);
|
|
|
|
} else
|
|
|
|
PASS;
|
|
|
|
}
|
|
|
|
}
|