Lines Matching refs:__u8
53 __u8 RoundKey[AES_keyExpSize];
65 typedef __u8 state_t[4][4];
71 static const __u8 sbox[256] = {
96 static const __u8 rsbox[256] = {
123 static const __u8 Rcon[11] = {0x8d, 0x01, 0x02, 0x04, 0x08, 0x10,
130 static void KeyExpansion(__u8 *RoundKey, const __u8 *Key) {
132 __u8 tempa[4]; /* Used for the column/row operations */
158 const __u8 u8tmp = tempa[0];
188 static void AES_init_ctx(struct AES_ctx *ctx, const __u8 *key) {
194 static void AddRoundKey(__u8 round, state_t *state, const __u8 *RoundKey) {
195 __u8 i, j;
203 static __u8 xtime(__u8 x) { return ((x << 1) ^ (((x >> 7) & 1) * 0x1b)); }
219 __u8 a, b, c, d;
242 __u8 i, j;
251 __u8 k = (*state)[j][i];
265 __u8 temp;
291 static void InvCipher(state_t *state, const __u8 *RoundKey) {
349 static void AES_ECB_decrypt(const struct AES_ctx *ctx, __u8 *buf) {
448 __u8 *dcid;
451 __u8 type;
467 static inline int parse_quic(quic_hd *qhd, __u8 *data, __u8 *data_end) {
468 __u8 *p;
498 static __u32 hash(const __u8 *data, __u32 datalen, __u32 initval) {
512 __u8 hbuf[8];
580 __u8 qpktbuf[6 + MAX_DCIDLEN];
582 __u8 key[AES_KEYLEN];
583 __u8 *cid_prefix;