From 277ec73d811456ef6fce7bbe18aa697dcbbc4980 Mon Sep 17 00:00:00 2001 From: tedu <> Date: Tue, 4 Jun 2013 15:54:32 +0000 Subject: [PATCH] oops, rounds is unsigned now --- src/lib/libutil/bcrypt_pbkdf.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/libutil/bcrypt_pbkdf.c b/src/lib/libutil/bcrypt_pbkdf.c index 732499be..24b628cc 100644 --- a/src/lib/libutil/bcrypt_pbkdf.c +++ b/src/lib/libutil/bcrypt_pbkdf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcrypt_pbkdf.c,v 1.1 2013/06/03 21:07:02 tedu Exp $ */ +/* $OpenBSD: bcrypt_pbkdf.c,v 1.2 2013/06/04 15:54:32 tedu Exp $ */ /* * Copyright (c) 2013 Ted Unangst * @@ -107,8 +107,6 @@ bcrypt_pbkdf(const char *pass, size_t passlen, const uint8_t *salt, size_t saltl uint32_t count; /* nothing crazy */ - if (rounds < 1) - return -1; if (passlen == 0 || saltlen == 0 || keylen == 0 || keylen > sizeof(out) * sizeof(out)) return -1;