X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=src%2Fcrypto.h;h=9e8a19bcb9ac32b1e60110d8a8202e4e974ef311;hp=779f4522b01b4e6bb9e99526a720bd5a2c7ce594;hb=8d4b96efb7955eaa96174af4804597f92e124041;hpb=d9a6e9b7951388016638d05656645b22d8723fdb diff --git a/src/crypto.h b/src/crypto.h index 779f4522..9e8a19bc 100644 --- a/src/crypto.h +++ b/src/crypto.h @@ -3,7 +3,7 @@ /* crypto.h -- header for crypto.c - Copyright (C) 2014, 2017 Guus Sliepen + Copyright (C) 2014-2020 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,8 +20,8 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -extern void crypto_init(); -extern void crypto_exit(); -extern void randomize(void *, size_t); +void crypto_init(void); +void crypto_exit(void); +void randomize(void *buf, size_t len); #endif