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

/freebsd-11-stable/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-11-stable/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...]
/freebsd-11-stable/crypto/openssh/
H A Drijndael.c44 Td0[x] = Si[x].[0e, 09, 0d, 0b];
316 static const u32 Td0[256] = {
737 Td0[Te1[(rk[0] >> 24) ] & 0xff] ^
742 Td0[Te1[(rk[1] >> 24) ] & 0xff] ^
747 Td0[Te1[(rk[2] >> 24) ] & 0xff] ^
752 Td0[Te1[(rk[3] >> 24) ] & 0xff] ^
965 t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
966 t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
967 t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
968 t3 = Td0[s
[all...]
/freebsd-11-stable/crypto/openssl/crypto/aes/
H A Daes_core.c49 Td0[x] = Si[x].[0e, 09, 0d, 0b];
321 static const u32 Td0[256] = { variable
756 Td0[Te1[(rk[0] >> 24) ] & 0xff] ^
761 Td0[Te1[(rk[1] >> 24) ] & 0xff] ^
766 Td0[Te1[(rk[2] >> 24) ] & 0xff] ^
771 Td0[Te1[(rk[3] >> 24) ] & 0xff] ^
997 t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
998 t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
999 t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
1000 t3 = Td0[s
[all...]
H A Daes_x86core.c121 Td0[x] = Si[x].[0e, 09, 0d, 0b];
127 #define Td0 (u32)((u64*)((u8*)Td+0)) macro
628 Td0[Te2[(rk[0] ) & 0xff] & 0xff] ^
633 Td0[Te2[(rk[1] ) & 0xff] & 0xff] ^
638 Td0[Te2[(rk[2] ) & 0xff] & 0xff] ^
643 Td0[Te2[(rk[3] ) & 0xff] & 0xff] ^
942 t[0] = Td0[(s0 ) & 0xff] ^
947 t[1] = Td0[(s1 ) & 0xff] ^
952 t[2] = Td0[(s2 ) & 0xff] ^
957 t[3] = Td0[(s
[all...]
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Daes-armv4.S1057 ldr r0,[r10,r0,lsl#2] @ Td0[s0>>24]
1064 ldr r1,[r10,r1,lsl#2] @ Td0[s1>>24]
1077 ldr r2,[r10,r2,lsl#2] @ Td0[s2>>24]
1092 ldr r3,[r10,r3,lsl#2] @ Td0[s3>>24]

Completed in 272 milliseconds