Searched refs:Td0 (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.0-release/contrib/wpa/src/crypto/
H A Daes_i.h22 extern const u32 Td0[256];
53 #define TD0(i) Td0[((i) >> 24) & 0xff]
61 #define TD0_(i) Td0[(i) & 0xff]
93 #define TD0(i) Td0[((i) >> 24) & 0xff]
94 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8)
95 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16)
96 #define TD3(i) rotr(Td0[(i) & 0xff], 24)
101 #define TD0_(i) Td0[(i) & 0xff]
102 #define TD1_(i) rotr(Td0[(i) & 0xff], 8)
103 #define TD2_(i) rotr(Td0[(
[all...]
H A Daes-internal.c57 Td0[x] = Si[x].[0e, 09, 0d, 0b];
397 const u32 Td0[256] = { variable
/freebsd-10.0-release/crypto/openssh/
H A Drijndael.c44 Td0[x] = Si[x].[0e, 09, 0d, 0b];
382 static const u32 Td0[256] = { variable
835 Td0[Te4[(rk[0] >> 24) ] & 0xff] ^
840 Td0[Te4[(rk[1] >> 24) ] & 0xff] ^
845 Td0[Te4[(rk[2] >> 24) ] & 0xff] ^
850 Td0[Te4[(rk[3] >> 24) ] & 0xff] ^
1055 t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
1056 t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
1057 t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
1058 t3 = Td0[s
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/aes/
H A Daes_core.c49 Td0[x] = Si[x].[0e, 09, 0d, 0b];
321 static const u32 Td0[256] = { variable
754 Td0[Te1[(rk[0] >> 24) ] & 0xff] ^
759 Td0[Te1[(rk[1] >> 24) ] & 0xff] ^
764 Td0[Te1[(rk[2] >> 24) ] & 0xff] ^
769 Td0[Te1[(rk[3] >> 24) ] & 0xff] ^
994 t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
995 t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
996 t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
997 t3 = Td0[s
[all...]
H A Daes_x86core.c119 Td0[x] = Si[x].[0e, 09, 0d, 0b];
125 #define Td0 (u32)((u64*)((u8*)Td+0)) macro
624 Td0[Te2[(rk[0] ) & 0xff] & 0xff] ^
629 Td0[Te2[(rk[1] ) & 0xff] & 0xff] ^
634 Td0[Te2[(rk[2] ) & 0xff] & 0xff] ^
639 Td0[Te2[(rk[3] ) & 0xff] & 0xff] ^
934 t[0] = Td0[(s0 ) & 0xff] ^
939 t[1] = Td0[(s1 ) & 0xff] ^
944 t[2] = Td0[(s2 ) & 0xff] ^
949 t[3] = Td0[(s
[all...]
/freebsd-10.0-release/sys/crypto/rijndael/
H A Drijndael-alg-fst.c50 Td0[x] = Si[x].[0e, 09, 0d, 0b];
388 static const u32 Td0[256] = { variable
840 Td0[Te4[(rk[0] >> 24) ] & 0xff] ^
845 Td0[Te4[(rk[1] >> 24) ] & 0xff] ^
850 Td0[Te4[(rk[2] >> 24) ] & 0xff] ^
855 Td0[Te4[(rk[3] >> 24) ] & 0xff] ^
1060 t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
1061 t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
1062 t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
1063 t3 = Td0[s
[all...]

Completed in 82 milliseconds