aes.h 805 B

12345678910111213141516171819202122232425262728293031
  1. /* Copyright (c) 2003, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2008, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. /* Implements a minimal interface to counter-mode AES. */
  7. #ifndef __AES_H
  8. #define __AES_H
  9. #define AES_H_ID "$Id$"
  10. /**
  11. * \file aes.h
  12. * \brief Headers for aes.c
  13. */
  14. #include "torint.h"
  15. struct aes_cnt_cipher;
  16. typedef struct aes_cnt_cipher aes_cnt_cipher_t;
  17. aes_cnt_cipher_t* aes_new_cipher(void);
  18. void aes_free_cipher(aes_cnt_cipher_t *cipher);
  19. void aes_set_key(aes_cnt_cipher_t *cipher, const char *key, int key_bits);
  20. void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, size_t len,
  21. char *output);
  22. void aes_set_iv(aes_cnt_cipher_t *cipher, const char *iv);
  23. #endif