diff options
author | 2015-01-08 00:30:07 +0000 | |
---|---|---|
committer | 2015-01-08 00:30:07 +0000 | |
commit | 1baefdb03c4761b2e879a7215cd2f00a258e5842 (patch) | |
tree | 806760a50c161d8b197a342ae1b9b9d8114a2745 /lib/libutil | |
parent | use the correct format string for refid (diff) | |
download | wireguard-openbsd-1baefdb03c4761b2e879a7215cd2f00a258e5842.tar.xz wireguard-openbsd-1baefdb03c4761b2e879a7215cd2f00a258e5842.zip |
declare a local version of MIN(), call it MINIMUM()
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/bcrypt_pbkdf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libutil/bcrypt_pbkdf.c b/lib/libutil/bcrypt_pbkdf.c index 106f7eb73f0..3fdeaff9914 100644 --- a/lib/libutil/bcrypt_pbkdf.c +++ b/lib/libutil/bcrypt_pbkdf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcrypt_pbkdf.c,v 1.11 2015/01/07 21:34:23 deraadt Exp $ */ +/* $OpenBSD: bcrypt_pbkdf.c,v 1.12 2015/01/08 00:30:07 deraadt Exp $ */ /* * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org> * @@ -24,6 +24,8 @@ #include <string.h> #include <util.h> +#define MINIMUM(a,b) (((a) < (b)) ? (a) : (b)) + /* * pkcs #5 pbkdf2 implementation using the "bcrypt" hash * @@ -149,7 +151,7 @@ bcrypt_pbkdf(const char *pass, size_t passlen, const uint8_t *salt, size_t saltl /* * pbkdf2 deviation: output the key material non-linearly. */ - amt = MIN(amt, keylen); + amt = MINIMUM(amt, keylen); for (i = 0; i < amt; i++) { size_t dest = i * stride + (count - 1); if (dest >= origkeylen) |