diff options
Diffstat (limited to 'openbsd-compat/openbsd-compat.h')
-rw-r--r-- | openbsd-compat/openbsd-compat.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index cb007f018..f34619e4a 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: openbsd-compat.h,v 1.59 2013/11/08 07:54:39 dtucker Exp $ */ | 1 | /* $Id: openbsd-compat.h,v 1.60 2013/12/07 00:51:54 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1999-2003 Damien Miller. All rights reserved. | 4 | * Copyright (c) 1999-2003 Damien Miller. All rights reserved. |
@@ -44,6 +44,7 @@ | |||
44 | #include "vis.h" | 44 | #include "vis.h" |
45 | #include "getrrsetbyname.h" | 45 | #include "getrrsetbyname.h" |
46 | #include "sha2.h" | 46 | #include "sha2.h" |
47 | #include "blf.h" | ||
47 | 48 | ||
48 | #ifndef HAVE_BASENAME | 49 | #ifndef HAVE_BASENAME |
49 | char *basename(const char *path); | 50 | char *basename(const char *path); |
@@ -240,6 +241,11 @@ char *group_from_gid(gid_t, int); | |||
240 | int timingsafe_bcmp(const void *, const void *, size_t); | 241 | int timingsafe_bcmp(const void *, const void *, size_t); |
241 | #endif | 242 | #endif |
242 | 243 | ||
244 | #ifndef HAVE_BCRYPT_PBKDF | ||
245 | int bcrypt_pbkdf(const char *, size_t, const u_int8_t *, size_t, | ||
246 | u_int8_t *, size_t, unsigned int); | ||
247 | #endif | ||
248 | |||
243 | void *xmmap(size_t size); | 249 | void *xmmap(size_t size); |
244 | char *xcrypt(const char *password, const char *salt); | 250 | char *xcrypt(const char *password, const char *salt); |
245 | char *shadow_pw(struct passwd *pw); | 251 | char *shadow_pw(struct passwd *pw); |