Home | History | Annotate | Download | only in ciphers

Lines Matching refs:rc6

13    @file rc6.c
14 RC6 code by Tom St Denis
18 #ifdef RC6
22 "rc6",
43 Initialize the RC6 block cipher
101 skey->rc6.K[i] = S[i];
117 Encrypts a block of text with RC6
136 b += skey->rc6.K[0];
137 d += skey->rc6.K[1];
145 K = skey->rc6.K + 2;
155 a += skey->rc6.K[42];
156 c += skey->rc6.K[43];
171 Decrypts a block of text with RC6
190 a -= skey->rc6.K[42];
191 c -= skey->rc6.K[43];
199 K = skey->rc6.K + 40;
210 b -= skey->rc6.K[0];
211 d -= skey->rc6.K[1];
227 Performs a self-test of the RC6 block cipher
342 #endif /*RC6*/
346 /* $Source: /cvs/libtom/libtomcrypt/src/ciphers/rc6.c,v $ */