From 9813b147580d9f42e2484d27ecaa3ab244841ee8 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 14 May 2017 19:52:19 +1200 Subject: Add experimental AVX base32 algo, modularise base32 out --- onion_base32.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 onion_base32.h (limited to 'onion_base32.h') diff --git a/onion_base32.h b/onion_base32.h new file mode 100644 index 0000000..8f88ebb --- /dev/null +++ b/onion_base32.h @@ -0,0 +1,6 @@ +int check_base32(char *); +void onion_base32(char [16], unsigned char (*)); + +#ifdef AVX_ONION_BASE32 +void onion_base32_avx(char [16], unsigned char (*)); +#endif -- cgit v1.1