root/tools/packfi2/aes128.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _AES128__H_
   2 #define _AES128__H_
   3 
   4 void aes128_expandkey( void *expanded_key, const void *aes_key );
   5 void aes128_encrypt_block (void *out_buffer, const void *inp_buffer, const unsigned char *expkey );
   6 void aes128_decrypt_block (void *out_buffer, const void *inp_buffer, const unsigned char *expkey );
   7 void aes128_cbc_encrypt( void *buffer, const unsigned char *expkey, const void *iv, int len );
   8 void aes128_cbc_decrypt( void *buffer, const unsigned char *expkey, const void *iv, int len );
   9 
  10 #endif // _AES128__H_


/* [<][>][^][v][top][bottom][index][help] */