diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-18 17:59:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-18 17:59:57 +0000 |
commit | e94b48ee684c48bc28f019a6499e6f6406b5b23e (patch) | |
tree | 658d912b11493d1da81e103ce5a82a0b08131aa6 /lib/libc | |
parent | 159c0670301b83da5db8db75bcc238ee15e0aee8 (diff) |
i believe i took care of the 32bit and alignment issues, so the comment can go away
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/crypt/crypt.c | 9 | ||||
-rw-r--r-- | lib/libc/crypt/morecrypt.c | 9 |
2 files changed, 2 insertions, 16 deletions
diff --git a/lib/libc/crypt/crypt.c b/lib/libc/crypt/crypt.c index 28add7f9e21..3680900baf2 100644 --- a/lib/libc/crypt/crypt.c +++ b/lib/libc/crypt/crypt.c @@ -1,4 +1,4 @@ -/* $Id: crypt.c,v 1.1 1995/12/16 12:55:30 deraadt Exp $ */ +/* $Id: crypt.c,v 1.2 1995/12/18 17:59:55 deraadt Exp $ */ /* * FreeSec: libcrypt @@ -45,13 +45,6 @@ * attention of the author). A list of errata for this book has been * posted to the sci.crypt newsgroup by the author and is available for FTP. * - * ARCHITECTURE ASSUMPTIONS: - * This code assumes that u_longs are 32 bits. It will probably not - * operate on 64-bit machines without modifications. - * It is assumed that the 8-byte arrays passed by reference can be - * addressed as arrays of u_longs (ie. the CPU is not picky about - * alignment). - * * NOTE: * This file has a static version of des_setkey() so that crypt.o exports * only the crypt() interface. This is required to make binaries linked diff --git a/lib/libc/crypt/morecrypt.c b/lib/libc/crypt/morecrypt.c index 4b5be69f175..64f152139a5 100644 --- a/lib/libc/crypt/morecrypt.c +++ b/lib/libc/crypt/morecrypt.c @@ -1,4 +1,4 @@ -/* $Id: morecrypt.c,v 1.2 1995/12/17 05:49:38 deraadt Exp $ */ +/* $Id: morecrypt.c,v 1.3 1995/12/18 17:59:56 deraadt Exp $ */ /* * FreeSec: libcrypt @@ -45,13 +45,6 @@ * attention of the author). A list of errata for this book has been * posted to the sci.crypt newsgroup by the author and is available for FTP. * - * ARCHITECTURE ASSUMPTIONS: - * This code assumes that u_longs are 32 bits. It will probably not - * operate on 64-bit machines without modifications. - * It is assumed that the 8-byte arrays passed by reference can be - * addressed as arrays of u_longs (ie. the CPU is not picky about - * alignment). - * * NOTE: * This file must copy certain chunks of crypt.c for legal reasons. * crypt.c can only export the interface crypt(), to make binaries |