diff options
author | deraadt <> | 1995-12-18 17:59:56 +0000 |
---|---|---|
committer | deraadt <> | 1995-12-18 17:59:56 +0000 |
commit | 0fd8d706013540776674a583d2456224f1631724 (patch) | |
tree | 0187723023ff6a92c31764668d5b0dd388d55423 | |
parent | 4c70e8e290177091087559c28d94840d5afd660b (diff) | |
download | openbsd-0fd8d706013540776674a583d2456224f1631724.tar.gz openbsd-0fd8d706013540776674a583d2456224f1631724.tar.bz2 openbsd-0fd8d706013540776674a583d2456224f1631724.zip |
i believe i took care of the 32bit and alignment issues, so the comment can go away
-rw-r--r-- | src/lib/libc/crypt/crypt.c | 9 | ||||
-rw-r--r-- | src/lib/libc/crypt/morecrypt.c | 9 |
2 files changed, 2 insertions, 16 deletions
diff --git a/src/lib/libc/crypt/crypt.c b/src/lib/libc/crypt/crypt.c index 28add7f9e2..3680900baf 100644 --- a/src/lib/libc/crypt/crypt.c +++ b/src/lib/libc/crypt/crypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: crypt.c,v 1.1 1995/12/16 12:55:30 deraadt Exp $ */ | 1 | /* $Id: crypt.c,v 1.2 1995/12/18 17:59:55 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * FreeSec: libcrypt | 4 | * FreeSec: libcrypt |
@@ -45,13 +45,6 @@ | |||
45 | * attention of the author). A list of errata for this book has been | 45 | * attention of the author). A list of errata for this book has been |
46 | * posted to the sci.crypt newsgroup by the author and is available for FTP. | 46 | * posted to the sci.crypt newsgroup by the author and is available for FTP. |
47 | * | 47 | * |
48 | * ARCHITECTURE ASSUMPTIONS: | ||
49 | * This code assumes that u_longs are 32 bits. It will probably not | ||
50 | * operate on 64-bit machines without modifications. | ||
51 | * It is assumed that the 8-byte arrays passed by reference can be | ||
52 | * addressed as arrays of u_longs (ie. the CPU is not picky about | ||
53 | * alignment). | ||
54 | * | ||
55 | * NOTE: | 48 | * NOTE: |
56 | * This file has a static version of des_setkey() so that crypt.o exports | 49 | * This file has a static version of des_setkey() so that crypt.o exports |
57 | * only the crypt() interface. This is required to make binaries linked | 50 | * only the crypt() interface. This is required to make binaries linked |
diff --git a/src/lib/libc/crypt/morecrypt.c b/src/lib/libc/crypt/morecrypt.c index 4b5be69f17..64f152139a 100644 --- a/src/lib/libc/crypt/morecrypt.c +++ b/src/lib/libc/crypt/morecrypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: morecrypt.c,v 1.2 1995/12/17 05:49:38 deraadt Exp $ */ | 1 | /* $Id: morecrypt.c,v 1.3 1995/12/18 17:59:56 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * FreeSec: libcrypt | 4 | * FreeSec: libcrypt |
@@ -45,13 +45,6 @@ | |||
45 | * attention of the author). A list of errata for this book has been | 45 | * attention of the author). A list of errata for this book has been |
46 | * posted to the sci.crypt newsgroup by the author and is available for FTP. | 46 | * posted to the sci.crypt newsgroup by the author and is available for FTP. |
47 | * | 47 | * |
48 | * ARCHITECTURE ASSUMPTIONS: | ||
49 | * This code assumes that u_longs are 32 bits. It will probably not | ||
50 | * operate on 64-bit machines without modifications. | ||
51 | * It is assumed that the 8-byte arrays passed by reference can be | ||
52 | * addressed as arrays of u_longs (ie. the CPU is not picky about | ||
53 | * alignment). | ||
54 | * | ||
55 | * NOTE: | 48 | * NOTE: |
56 | * This file must copy certain chunks of crypt.c for legal reasons. | 49 | * This file must copy certain chunks of crypt.c for legal reasons. |
57 | * crypt.c can only export the interface crypt(), to make binaries | 50 | * crypt.c can only export the interface crypt(), to make binaries |