diff options
author | Roger Dingledine <arma@torproject.org> | 2005-06-11 05:31:17 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-06-11 05:31:17 +0000 |
commit | fcd0fc3364947071944cba0420d27cf267a3b146 (patch) | |
tree | 289418a85330d1db1eeff9f844ac56c69b688580 /src/common/aes.c | |
parent | 691265df0c5b7c0c9da78c7513fe2385665d9a55 (diff) | |
download | tor-fcd0fc3364947071944cba0420d27cf267a3b146.tar.gz tor-fcd0fc3364947071944cba0420d27cf267a3b146.zip |
flesh out the source file descriptions for doxygen
svn:r4404
Diffstat (limited to 'src/common/aes.c')
-rw-r--r-- | src/common/aes.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/aes.c b/src/common/aes.c index 1f7195cbc2..5079006399 100644 --- a/src/common/aes.c +++ b/src/common/aes.c @@ -6,8 +6,11 @@ const char aes_c_id[] = "$Id$"; /** * \file aes.c - * - * \brief Implementation of a simple AES counter mode. + * \brief Implements the AES cipher (with 128-bit keys and blocks), + * and a counter-mode stream cipher on top of AES. This code is + * taken from the main Rijndael distribution. (We include this + * because many people are running older versions of OpenSSL without + * AES support.) **/ #include "orconfig.h" |