drogon/lib/tests/Sha1Test.cc

20 lines
524 B
C++
Raw Normal View History

#include <drogon/config.h>
#ifdef USE_OPENSSL
#include <openssl/sha.h>
#else
#include "../lib/src/ssl_funcs/Sha1.h"
#endif
#include <stdio.h>
2019-02-02 12:09:14 +08:00
#include <string.h>
int main()
{
2018-10-14 15:56:54 +08:00
unsigned char in[] = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
unsigned char out[SHA_DIGEST_LENGTH] = {0};
2019-02-02 11:34:00 +08:00
SHA1(in, strlen((const char *)in), out);
/// fecfd28bbc9345891a66d7c1b8ff46e60192d284
2018-10-14 15:56:54 +08:00
for (int i = 0; i < SHA_DIGEST_LENGTH; i++)
printf("%02x", out[i]);
putchar('\n');
}