Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 132356 | Differences between
and this patch

Collapse All | Expand All

(-)KNOWN-BUGS (-1 lines)
Removed Link Here
1
- cast-256 and rc6 do not work properly on Alpha (64 bit) machines
(-)lib/mcrypt_modules.h.orig (-4 / +4 lines)
Lines 1-7 Link Here
1
#define rotl32(x,n)   (((x) << ((word32)(n))) | ((x) >> (32 - (word32)(n))))
1
#define rotl32(x,n)   (((x) << ((word32)(n & 31))) | ((x) >> (32 - (word32)(n & 31))))
2
#define rotr32(x,n)   (((x) >> ((word32)(n))) | ((x) << (32 - (word32)(n))))
2
#define rotr32(x,n)   (((x) >> ((word32)(n & 31))) | ((x) << (32 - (word32)(n & 31))))
3
#define rotl16(x,n)   (((x) << ((word16)(n))) | ((x) >> (16 - (word16)(n))))
3
#define rotl16(x,n)   (((x) << ((word16)(n & 15))) | ((x) >> (16 - (word16)(n & 15))))
4
#define rotr16(x,n)   (((x) >> ((word16)(n))) | ((x) << (16 - (word16)(n))))
4
#define rotr16(x,n)   (((x) >> ((word16)(n & 15))) | ((x) << (16 - (word16)(n & 15))))
5
5
6
/* Use hardware rotations.. when available */
6
/* Use hardware rotations.. when available */
7
#ifdef swap32
7
#ifdef swap32

Return to bug 132356