GitHub CI: update list of container images
[tinc] / src / prf.h
index f7ecc64..2e60dff 100644 (file)
--- a/src/prf.h
+++ b/src/prf.h
@@ -1,3 +1,6 @@
+#ifndef TINC_PRF_H
+#define TINC_PRF_H
+
 /*
     prf.h -- header file for prf.c
     Copyright (C) 2011-2013 Guus Sliepen <guus@tinc-vpn.org>
@@ -17,9 +20,8 @@
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef __TINC_PRF_H__
-#define __TINC_PRF_H__
+#include "system.h"
 
-extern bool prf(const char *secret, size_t secretlen, char *seed, size_t seedlen, char *out, size_t outlen);
+extern bool prf(const uint8_t *secret, size_t secretlen, uint8_t *seed, size_t seedlen, uint8_t *out, size_t outlen) ATTR_WARN_UNUSED;
 
 #endif