Browse Source

Indentx

next
Frank Denis 7 years ago
parent
commit
d5bf3954d6
  1. 16
      test/default/hash.c
  2. 5
      test/default/hash3.c

16
test/default/hash.c

@ -3,31 +3,35 @@
#include "cmptest.h"
static unsigned char x[] = "testing\n";
static unsigned char x2[] = "The Conscience of a Hacker is a small essay written January 8, 1986 by a computer security hacker who went by the handle of The Mentor, who belonged to the 2nd generation of Legion of Doom.";
static unsigned char x2[] =
"The Conscience of a Hacker is a small essay written January 8, 1986 by a "
"computer security hacker who went by the handle of The Mentor, who "
"belonged to the 2nd generation of Legion of Doom.";
static unsigned char h[crypto_hash_BYTES];
int main(void)
int
main(void)
{
size_t i;
crypto_hash(h, x, sizeof x - 1U);
for (i = 0; i < crypto_hash_BYTES; ++i) {
printf("%02x", (unsigned int)h[i]);
printf("%02x", (unsigned int) h[i]);
}
printf("\n");
crypto_hash(h, x2, sizeof x2 - 1U);
for (i = 0; i < crypto_hash_BYTES; ++i) {
printf("%02x", (unsigned int)h[i]);
printf("%02x", (unsigned int) h[i]);
}
printf("\n");
crypto_hash_sha256(h, x, sizeof x - 1U);
for (i = 0; i < crypto_hash_sha256_BYTES; ++i) {
printf("%02x", (unsigned int)h[i]);
printf("%02x", (unsigned int) h[i]);
}
printf("\n");
crypto_hash_sha256(h, x2, sizeof x2 - 1U);
for (i = 0; i < crypto_hash_sha256_BYTES; ++i) {
printf("%02x", (unsigned int)h[i]);
printf("%02x", (unsigned int) h[i]);
}
printf("\n");

5
test/default/hash3.c

@ -5,13 +5,14 @@
static unsigned char x[] = "testing\n";
static unsigned char h[crypto_hash_BYTES];
int main(void)
int
main(void)
{
size_t i;
crypto_hash(h, x, sizeof x - 1U);
for (i = 0; i < crypto_hash_BYTES; ++i) {
printf("%02x", (unsigned int)h[i]);
printf("%02x", (unsigned int) h[i]);
}
printf("\n");

Loading…
Cancel
Save