des_quad_cksum() byte order bug fix.
authorUlf Möller <ulf@openssl.org>
Sun, 19 Mar 2000 02:06:37 +0000 (02:06 +0000)
committerUlf Möller <ulf@openssl.org>
Sun, 19 Mar 2000 02:06:37 +0000 (02:06 +0000)
commit7af4816f0e9b624d8c2fcec19768ac14febb1832
treec67a91f44159becae7ae9f47aad714888520509b
parent369782ac5027b7e4d46a708eca020d84d97ad034
des_quad_cksum() byte order bug fix.
See http://www.pdc.kth.se/kth-krb/

Their solution for CRAY is somewhat awkward.
I'll assume that a "short" is 32 bits on CRAY to avoid the
#ifdef _CRAY
    typedef struct {
        unsigned int a:32;
        unsigned int b:32;
    } XXX;
#else
    typedef DES_LONG XXX;
#endif
CHANGES
crypto/des/destest.c
crypto/des/qud_cksm.c