diff options
author | 2012-09-06 19:41:59 +0000 | |
---|---|---|
committer | 2012-09-06 19:41:59 +0000 | |
commit | 11dbc5f76ff6abfb5968180e7b575d06adba2bfd (patch) | |
tree | 675f5aae6d01d0fa3696fd023055c8eee9e9c56f /lib/libutil/util.h | |
parent | Remove the need to occasionally treat dos file names as strings by (diff) | |
download | wireguard-openbsd-11dbc5f76ff6abfb5968180e7b575d06adba2bfd.tar.xz wireguard-openbsd-11dbc5f76ff6abfb5968180e7b575d06adba2bfd.zip |
move pkcs5_pbkdf5 function to libutil so everybody can play with it
ok deraadt jsing matthew
Diffstat (limited to 'lib/libutil/util.h')
-rw-r--r-- | lib/libutil/util.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index 26c87a8fb86..89f2ea783db 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.30 2012/07/09 14:26:40 nicm Exp $ */ +/* $OpenBSD: util.h,v 1.31 2012/09/06 19:41:59 tedu Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -114,6 +114,9 @@ int uu_unlock(const char *); int fmt_scaled(long long, char *); int scan_scaled(char *, long long *); int isduid(const char *, int); +int pkcs5_pbkdf2(const char *, size_t, const char *, size_t, + u_int8_t *, size_t, u_int); + __END_DECLS #endif /* !_UTIL_H_ */ |