Home
last modified time | relevance | path

Searched defs:N_BLOCK (Results 1 – 2 of 2) sorted by relevance

/loramac-node-3.7.0/src/peripherals/soft-se/
Daes.c406 static void add_round_key( uint8_t d[N_BLOCK], const uint8_t k[N_BLOCK] ) in add_round_key()
411 static void shift_sub_rows( uint8_t st[N_BLOCK] ) in shift_sub_rows()
429 static void inv_shift_sub_rows( uint8_t st[N_BLOCK] ) in inv_shift_sub_rows()
448 static void mix_sub_columns( uint8_t dt[N_BLOCK] )
479 static void inv_mix_sub_columns( uint8_t dt[N_BLOCK] )
568 return_type aes_encrypt( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK], const aes_context ctx[1]…
598 int32_t n_block, uint8_t iv[N_BLOCK], const aes_context ctx[1] )
620 return_type aes_decrypt( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK], const aes_context ctx[1] )
650 int32_t n_block, uint8_t iv[N_BLOCK], const aes_context ctx[1] )
674 static void update_encrypt_key_128( uint8_t k[N_BLOCK], uint8_t *rc )
[all …]
Daes.h61 #define N_BLOCK (N_ROW * N_COL) macro