Lines Matching refs:out
568 return_type aes_encrypt( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK], const aes_context ctx[1]…
588 copy_and_key( out, s1, ctx->ksch + r * N_BLOCK );
597 return_type aes_cbc_encrypt( const uint8_t *in, uint8_t *out, argument
607 block_copy(out, iv);
609 out += N_BLOCK;
620 return_type aes_decrypt( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK], const aes_context ctx[1] )
640 copy_and_key( out, s1, ctx->ksch );
649 return_type aes_cbc_decrypt( const uint8_t *in, uint8_t *out, argument
657 if(aes_decrypt(in, out, ctx) != EXIT_SUCCESS)
659 xor_block(out, iv);
663 out += N_BLOCK;
694 void aes_encrypt_128( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK],
719 copy_and_key( out, s1, o_key );
747 void aes_decrypt_128( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK],
772 copy_and_key( out, s1, o_key );
814 void aes_encrypt_256( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK],
852 copy_and_key( out, s1, o_key );
895 void aes_decrypt_256( const uint8_t in[N_BLOCK], uint8_t out[N_BLOCK],
933 copy_and_key( out, s1, o_key );