Searched refs:aes_08t (Results 1 - 4 of 4) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/crypto/aes/ppc/
H A Daesopt.h55 aes_08t (an unsigned 8-bit type)
566 #define bval(x,n) ((aes_08t)((x) >> (8 * (n))))
574 #define bval(x,n) ((aes_08t)((x) >> (24 - 8 * (n))))
581 #define word_in(x,c) bytes2word(((aes_08t*)(x)+4*c)[0], ((aes_08t*)(x)+4*c)[1], \
582 ((aes_08t*)(x)+4*c)[2], ((aes_08t*)(x)+4*c)[3])
583 #define word_out(x,c,v) { ((aes_08t*)(x)+4*c)[0] = bval(v,0); ((aes_08t*)(x)+4*c)[1] = bval(v,1); \
584 ((aes_08t*)(
[all...]
H A Daestab.h114 d_1(aes_08t, t_dec(s,box), sb_data, h0);
117 d_1(aes_08t, t_dec(i,box), isb_data, h0);
H A Daestab.c221 static aes_08t hibit(const aes_32t x)
222 { aes_08t r = (aes_08t)((x >> 1) | (x >> 2));
231 static aes_08t fi(const aes_08t x)
232 { aes_08t p1 = x, p2 = BPOLY, n1 = hibit(x), n2 = 0x80, v1 = 1, v2 = 0;
259 (w = (aes_32t)x, w ^= (w<<1)^(w<<2)^(w<<3)^(w<<4), 0x63^(aes_08t)(w^(w>>8)))
262 (w = (aes_32t)x, w = (w<<1)^(w<<3)^(w<<6), 0x05^(aes_08t)(w^(w>>8)))
271 aes_08t pow[512], log[256];
282 pow[i] = (aes_08t)
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/crypto/aes/
H A Daes.h64 typedef unsigned char aes_08t; typedef

Completed in 76 milliseconds