diff options
Diffstat (limited to 'contrib/pgcrypto/rijndael.c')
-rw-r--r-- | contrib/pgcrypto/rijndael.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/pgcrypto/rijndael.c b/contrib/pgcrypto/rijndael.c index fbf74cabe92..c75f1d1d719 100644 --- a/contrib/pgcrypto/rijndael.c +++ b/contrib/pgcrypto/rijndael.c @@ -1,6 +1,6 @@ /* $OpenBSD: rijndael.c,v 1.6 2000/12/09 18:51:34 markus Exp $ */ -/* $PostgreSQL: pgsql/contrib/pgcrypto/rijndael.c,v 1.11 2005/07/11 15:07:59 tgl Exp $ */ +/* $PostgreSQL: pgsql/contrib/pgcrypto/rijndael.c,v 1.12 2005/10/15 02:49:06 momjian Exp $ */ /* This is an independent implementation of the encryption algorithm: */ /* */ @@ -91,7 +91,6 @@ static void gen_tabs(void); #include "rijndael.tbl" #define tab_gen 1 - #else /* !PRE_CALC_TABLES */ static u1byte pow_tab[256]; @@ -143,7 +142,6 @@ static u4byte tab_gen = 0; il_tab[1][byte((bi)[((n) + 3) & 3],1)] ^ \ il_tab[2][byte((bi)[((n) + 2) & 3],2)] ^ \ il_tab[3][byte((bi)[((n) + 1) & 3],3)] ^ *((k) + (n)) - #else #define ls_box(x) \ |