Browse Source

grammer/spelling

OPENBSD_2_9
todd 23 years ago
parent
commit
83df067d68
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/lib/libc/crypt/bcrypt.c
  2. +2
    -2
      src/lib/libc/crypt/blowfish.c

+ 2
- 2
src/lib/libc/crypt/bcrypt.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: bcrypt.c,v 1.13 2000/08/02 15:09:41 provos Exp $ */
/* $OpenBSD: bcrypt.c,v 1.14 2001/01/04 21:45:30 todd Exp $ */
/*
* Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@ -237,7 +237,7 @@ bcrypt(key, salt)
/* Out of sync with passwd entry */
return error;
/* Computer power doesnt increase linear, 2^x should be fine */
/* Computer power doesn't increase linear, 2^x should be fine */
if ((rounds = (u_int32_t) 1 << (logr = atoi(salt))) < BCRYPT_MINROUNDS)
return error;


+ 2
- 2
src/lib/libc/crypt/blowfish.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: blowfish.c,v 1.14 1999/12/28 13:09:13 provos Exp $ */
/* $OpenBSD: blowfish.c,v 1.15 2001/01/04 21:45:30 todd Exp $ */
/*
* Blowfish block cipher for OpenBSD
* Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@ -540,7 +540,7 @@ blf_key(c, k, len)
u_int16_t len;
#endif
{
/* Initalize S-boxes and subkeys with Pi */
/* Initialize S-boxes and subkeys with Pi */
Blowfish_initstate(c);
/* Transform S-boxes and subkeys with key */


Loading…
Cancel
Save