aes.h 718 B

1234567891011121314151617181920212223
  1. /* Copyright 2003 Roger Dingledine */
  2. /* See LICENSE for licensing information */
  3. /* $Id$ */
  4. /* Implements a minimal interface to counter-mode AES. */
  5. #ifndef __AES_H
  6. #define __AES_H
  7. #include "../common/torint.h"
  8. struct aes_cnt_cipher;
  9. typedef struct aes_cnt_cipher aes_cnt_cipher_t;
  10. aes_cnt_cipher_t* aes_new_cipher();
  11. void aes_free_cipher(aes_cnt_cipher_t *cipher);
  12. void aes_set_key(aes_cnt_cipher_t *cipher, unsigned char *key, int key_bits);
  13. void aes_crypt(aes_cnt_cipher_t *cipher, char *input, int len, char *output);
  14. uint64_t aes_get_counter(aes_cnt_cipher_t *cipher);
  15. void aes_set_counter(aes_cnt_cipher_t *cipher, uint64_t counter);
  16. void aes_adjust_counter(aes_cnt_cipher_t *cipher, long delta);
  17. #endif