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

/openbsd-current/lib/libcrypto/modes/
H A Dmodes_local.h61 #define GETU32(p) BSWAP4(*(const u32 *)(p)) macro
64 #define GETU32(p) ((u32)(p)[0]<<24|(u32)(p)[1]<<16|(u32)(p)[2]<<8|(u32)(p)[3]) macro
H A Dctr128.c219 ctr32 = GETU32(ivec + 12);
H A Dgcm128.c65 #undef GETU32 macro
66 #define GETU32(p) BSWAP4(*(const u32 *)(p)) macro
568 X = (long)((u64)GETU32(p) << 32|GETU32(p + 4));
572 X = (long)GETU32(p);
/openbsd-current/lib/libcrypto/camellia/
H A Dcamellia.c113 # define GETU32(p) ({u32 r=*(const u32 *)(p); asm("bswapl %0":"=r"(r):"0"(r)); r; }) macro
128 #if !defined(GETU32) && !defined(PUTU32)
129 # define GETU32(p) (((u32)(p)[0] << 24) ^ ((u32)(p)[1] << 16) ^ ((u32)(p)[2] << 8) ^ ((u32)(p)[3])) macro
366 k[0] = s0 = GETU32(rawKey);
367 k[1] = s1 = GETU32(rawKey + 4);
368 k[2] = s2 = GETU32(rawKey + 8);
369 k[3] = s3 = GETU32(rawKey + 12);
372 k[8] = s0 = GETU32(rawKey + 16);
373 k[9] = s1 = GETU32(rawKey + 20);
378 k[10] = s2 = GETU32(rawKe
[all...]
/openbsd-current/usr.bin/ssh/
H A Drijndael.c618 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
632 rk[0] = GETU32(cipherKey );
633 rk[1] = GETU32(cipherKey + 4);
634 rk[2] = GETU32(cipherKey + 8);
635 rk[3] = GETU32(cipherKey + 12);
654 rk[4] = GETU32(cipherKey + 16);
655 rk[5] = GETU32(cipherKey + 20);
676 rk[6] = GETU32(cipherKey + 24);
677 rk[7] = GETU32(cipherKey + 28);
771 s0 = GETU32(p
[all...]
/openbsd-current/sys/lib/libsa/
H A Drijndael.c715 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
729 rk[0] = GETU32(cipherKey );
730 rk[1] = GETU32(cipherKey + 4);
731 rk[2] = GETU32(cipherKey + 8);
732 rk[3] = GETU32(cipherKey + 12);
751 rk[4] = GETU32(cipherKey + 16);
752 rk[5] = GETU32(cipherKey + 20);
773 rk[6] = GETU32(cipherKey + 24);
774 rk[7] = GETU32(cipherKey + 28);
866 s0 = GETU32(p
[all...]
/openbsd-current/sys/crypto/
H A Drijndael.c617 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
631 rk[0] = GETU32(cipherKey );
632 rk[1] = GETU32(cipherKey + 4);
633 rk[2] = GETU32(cipherKey + 8);
634 rk[3] = GETU32(cipherKey + 12);
653 rk[4] = GETU32(cipherKey + 16);
654 rk[5] = GETU32(cipherKey + 20);
675 rk[6] = GETU32(cipherKey + 24);
676 rk[7] = GETU32(cipherKey + 28);
768 s0 = GETU32(p
[all...]

Completed in 321 milliseconds