1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
#define BOOST_TEST_MODULE Crypto_Test
#include <boost/test/included/unit_test.hpp>
#include <zeep/exception.hpp>
#include <zeep/crypto.hpp>
#include <zeep/streambuf.hpp>
namespace z = zeep;
BOOST_AUTO_TEST_CASE(http_base64_1)
{
using namespace std::literals;
auto in = R"(Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure.)"s;
auto out = R"(TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlz
IHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2Yg
dGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGlu
dWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRo
ZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=
)"s;
auto test = zeep::encode_base64(in, 76);
BOOST_CHECK_EQUAL(test, out);
auto s = zeep::decode_base64(test);
BOOST_CHECK(s == in);
}
BOOST_AUTO_TEST_CASE(http_base32_1)
{
using namespace std::literals;
auto in = R"(Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure.)"s;
auto out = R"(JVQW4IDJOMQGI2LTORUW4Z3VNFZWQZLEFQQG433UEBXW43DZEBRHSIDINFZSA4TFMFZW63RMEBRH
K5BAMJ4SA5DINFZSA43JNZTXK3DBOIQHAYLTONUW63RAMZZG63JAN52GQZLSEBQW42LNMFWHGLBA
O5UGSY3IEBUXGIDBEBWHK43UEBXWMIDUNBSSA3LJNZSCYIDUNBQXIIDCPEQGCIDQMVZHGZLWMVZG
C3TDMUQG6ZRAMRSWY2LHNB2CA2LOEB2GQZJAMNXW45DJNZ2WKZBAMFXGIIDJNZSGKZTBORUWOYLC
NRSSAZ3FNZSXEYLUNFXW4IDPMYQGW3TPO5WGKZDHMUWCAZLYMNSWKZDTEB2GQZJAONUG64TUEB3G
K2DFNVSW4Y3FEBXWMIDBNZ4SAY3BOJXGC3BAOBWGKYLTOVZGKLQ=
)"s;
auto test = zeep::encode_base32(in, 76);
BOOST_CHECK_EQUAL(test, out);
auto s = zeep::decode_base32(test);
BOOST_CHECK(s == in);
}
BOOST_AUTO_TEST_CASE(http_base64_2)
{
using namespace std::literals;
const std::string tests[] =
{
"1", "12", "123", "1234",
{ '\0' }, { '\0', '\001' }, { '\0', '\001', '\002' }
};
for (const auto& test: tests)
{
auto enc = zeep::encode_base64(test, 76);
auto dec = zeep::decode_base64(enc);
BOOST_CHECK(dec == test);
}
}
BOOST_AUTO_TEST_CASE(crypto_md5_1)
{
auto h = z::encode_hex(z::md5("1234"));
BOOST_CHECK_EQUAL(h, "81dc9bdb52d04dc20036dbd8313ed055");
}
BOOST_AUTO_TEST_CASE(crypto_sha1_1)
{
auto h = z::encode_hex(z::sha1("The quick brown fox jumps over the lazy dog"));
BOOST_CHECK_EQUAL(h, "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12");
}
BOOST_AUTO_TEST_CASE(crypto_sha256_1)
{
auto h = z::encode_hex(z::sha256(""));
BOOST_CHECK_EQUAL(h, "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855");
h = z::encode_hex(z::sha256("1"));
BOOST_CHECK_EQUAL(h, "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b");
h = z::encode_hex(z::sha256("The SHA (Secure Hash Algorithm) is one of a number of cryptographic hash functions. A cryptographic hash is like a signature for a data set. If you would like to compare two sets of raw data (source of the file, text or similar) it is always better to hash it and compare SHA256 values. It is like the fingerprints of the data. Even if only one symbol is changed the algorithm will produce different hash value. SHA256 algorithm generates an almost-unique, fixed size 256-bit (32-byte) hash. Hash is so called a one way function. This makes it suitable for checking integrity of your data, challenge hash authentication, anti-tamper, digital signatures, blockchain."));
BOOST_CHECK_EQUAL(h, "ae8bd70b42c2877e6800f3da2800044c8694f201242a484d38bb7941645e8876");
}
BOOST_AUTO_TEST_CASE(crypto_hmac_1)
{
auto h = z::encode_hex(z::hmac_sha256("The quick brown fox jumps over the lazy dog", "key"));
BOOST_CHECK_EQUAL(h, "f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8");
h = z::encode_hex(z::hmac_md5("The quick brown fox jumps over the lazy dog", "key"));
BOOST_CHECK_EQUAL(h, "80070713463e7749b90c2dc24911e275");
}
BOOST_AUTO_TEST_CASE(crypto_pbkdf2)
{
auto h = z::encode_hex(z::pbkdf2_hmac_sha256("1234", "key", 10, 16));
BOOST_CHECK_EQUAL(h, "458d81e7a1defc5d0b61708a7dc06233");
}
BOOST_AUTO_TEST_CASE(streambuf_1)
{
const char s[] = "Hello, world!";
auto sb = zeep::char_streambuf(s);
std::istream is(&sb);
auto len = is.seekg(0, std::ios_base::end).tellg();
BOOST_CHECK_EQUAL(len, strlen(s));
is.seekg(0);
std::vector<char> b(len);
is.read(b.data(), len);
BOOST_CHECK_EQUAL(is.tellg(), len);
BOOST_CHECK_EQUAL(std::string(b.begin(), b.end()), s);
}
|