summaryrefslogtreecommitdiff
path: root/crypto/rc4/rc4.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/rc4/rc4.h')
-rw-r--r--crypto/rc4/rc4.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/rc4/rc4.h b/crypto/rc4/rc4.h
index 7aec04fe93..c24a5b1281 100644
--- a/crypto/rc4/rc4.h
+++ b/crypto/rc4/rc4.h
@@ -72,6 +72,10 @@ typedef struct rc4_key_st
{
RC4_INT x,y;
RC4_INT data[256];
+#if defined(__ia64) || defined(__ia64__) || defined(_M_IA64)
+ /* see crypto/rc4/asm/rc4-ia64.S for further details... */
+ RC4_INT pad[512-256-2];
+#endif
} RC4_KEY;