From 9918d3e0fbb6572bf43869e219130381ce7b8551 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Thu, 19 Dec 2013 14:31:08 +0000 Subject: pseudo-code corrections from Solar Designer --- lib/libc/crypt/bcrypt.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libc/crypt/bcrypt.c') 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 @@ -34,10 +34,10 @@ * 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); -- cgit v1.2.3