aes.h 671 B

1234567891011121314151617181920212223242526
  1. /* Copyright (c) 2003, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2016, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /* Implements a minimal interface to counter-mode AES. */
  6. #ifndef TOR_AES_H
  7. #define TOR_AES_H
  8. /**
  9. * \file aes.h
  10. * \brief Headers for aes.c
  11. */
  12. typedef struct aes_cnt_cipher aes_cnt_cipher_t;
  13. aes_cnt_cipher_t* aes_new_cipher(const char *key, const char *iv);
  14. void aes_cipher_free(aes_cnt_cipher_t *cipher);
  15. void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len);
  16. int evaluate_evp_for_aes(int force_value);
  17. int evaluate_ctr_for_aes(void);
  18. #endif