From 4f3afe29e01b6d31ee260d171a15b15bbf24a0cd Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 24 Feb 2024 01:39:05 -0500 Subject: examples: update examples for new shake{128,256} prototypes --- examples/01-shake128/main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'examples/01-shake128') diff --git a/examples/01-shake128/main.c b/examples/01-shake128/main.c index f2a2347..54b8e3b 100644 --- a/examples/01-shake128/main.c +++ b/examples/01-shake128/main.c @@ -2,18 +2,18 @@ // shake128-example: hash contents of DATA with SHAKE128 and print first // 200 bytes of SHAKE128 hash of data to standard output. // -#include -#include -#include "hex.h" -#include "sha3.h" +#include // uint8_t +#include // printf() +#include "hex.h" // hex_write() +#include "sha3.h" // shake128() // test data static const uint8_t DATA[] = "this is some test data"; -int main() { +int main(void) { // hash data uint8_t buf[200] = { 0 }; - shake128_xof_once(DATA, sizeof(DATA), buf, sizeof(buf)); + shake128(DATA, sizeof(DATA), buf, sizeof(buf)); // print result to stdout printf("SHAKE128 (200 bytes): "); -- cgit v1.2.3