summaryrefslogtreecommitdiffstats
path: root/crypto/sha
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-12 10:40:00 -0500
committerRich Salz <rsalz@openssl.org>2015-01-12 10:40:00 -0500
commitfcf64ba0ace1bb76c6e00ca7d0c7cf7f9bebe628 (patch)
treef311339b47723c214fbd10684e85f06daa74cc32 /crypto/sha
parent9405a9a2e1594cea9c963c29d9898bb03cb0f24f (diff)
RT3548: Remove some unsupported platforms.
This commit removes NCR, Tandem, Cray. Regenerates TABLE. Removes another missing BEOS fluff. The last platform remaining on this ticket is WIN16. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/sha')
-rw-r--r--crypto/sha/sha.h2
-rw-r--r--crypto/sha/sha512.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/sha/sha.h b/crypto/sha/sha.h
index c5dd6600dc..95d9b60072 100644
--- a/crypto/sha/sha.h
+++ b/crypto/sha/sha.h
@@ -79,7 +79,7 @@ extern "C" {
#if defined(__LP32__)
#define SHA_LONG unsigned long
-#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__)
+#elif defined(__ILP64__)
#define SHA_LONG unsigned long
#define SHA_LONG_LOG2 3
#else
diff --git a/crypto/sha/sha512.c b/crypto/sha/sha512.c
index 5be98d3335..e0da0e1a4d 100644
--- a/crypto/sha/sha512.c
+++ b/crypto/sha/sha512.c
@@ -11,7 +11,7 @@
*
* As you might have noticed 32-bit hash algorithms:
*
- * - permit SHA_LONG to be wider than 32-bit (case on CRAY);
+ * - permit SHA_LONG to be wider than 32-bit
* - optimized versions implement two transform functions: one operating
* on [aligned] data in host byte order and one - on data in input
* stream byte order;