diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-12-19 14:31:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-12-19 14:31:08 +0000 |
commit | 9918d3e0fbb6572bf43869e219130381ce7b8551 (patch) | |
tree | 5cb73327243cf1fbb4fcf05f540f4f38983b5df0 /lib/libc | |
parent | 9f40fd2fb8ce4c4b91811abe971fd8bfcb2ce245 (diff) |
pseudo-code corrections from Solar Designer <solar@openwall.com>
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/crypt/bcrypt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/crypt/bcrypt.c b/lib/libc/crypt/bcrypt.c index e76f277718f..f27e77eb5fd 100644 --- a/lib/libc/crypt/bcrypt.c +++ b/lib/libc/crypt/bcrypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcrypt.c,v 1.25 2012/09/04 22:16:17 tedu Exp $ */ +/* $OpenBSD: bcrypt.c,v 1.26 2013/12/19 14:31:07 deraadt Exp $ */ /* * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> @@ -34,10 +34,10 @@ * <dm@lcs.mit.edu> and works as follows: * * 1. state := InitState () - * 2. state := ExpandKey (state, salt, password) 3. - * REPEAT rounds: + * 2. state := ExpandKey (state, salt, password) + * 3. REPEAT rounds: + * state := ExpandKey (state, 0, password) * state := ExpandKey (state, 0, salt) - * state := ExpandKey(state, 0, password) * 4. ctext := "OrpheanBeholderScryDoubt" * 5. REPEAT 64: * ctext := Encrypt_ECB (state, ctext); |