Lines Matching refs:uint8_t
64 typedef uint8_t return_type;
70 typedef uint8_t length_type;
73 { uint8_t ksch[(N_MAX_ROUNDS + 1) * N_BLOCK];
74 uint8_t rnd;
87 return_type aes_set_key( const uint8_t key[],
94 return_type aes_encrypt( const uint8_t in[N_BLOCK],
95 uint8_t out[N_BLOCK],
98 return_type aes_cbc_encrypt( const uint8_t *in,
99 uint8_t *out,
101 uint8_t iv[N_BLOCK],
107 return_type aes_decrypt( const uint8_t in[N_BLOCK],
108 uint8_t out[N_BLOCK],
111 return_type aes_cbc_decrypt( const uint8_t *in,
112 uint8_t *out,
114 uint8_t iv[N_BLOCK],
139 void aes_encrypt_128( const uint8_t in[N_BLOCK],
140 uint8_t out[N_BLOCK],
141 const uint8_t key[N_BLOCK],
142 uint8_t o_key[N_BLOCK] );
146 void aes_decrypt_128( const uint8_t in[N_BLOCK],
147 uint8_t out[N_BLOCK],
148 const uint8_t key[N_BLOCK],
149 uint8_t o_key[N_BLOCK] );
153 void aes_encrypt_256( const uint8_t in[N_BLOCK],
154 uint8_t out[N_BLOCK],
155 const uint8_t key[2 * N_BLOCK],
156 uint8_t o_key[2 * N_BLOCK] );
160 void aes_decrypt_256( const uint8_t in[N_BLOCK],
161 uint8_t out[N_BLOCK],
162 const uint8_t key[2 * N_BLOCK],
163 uint8_t o_key[2 * N_BLOCK] );