aboutsummaryrefslogtreecommitdiff
path: root/src/common/aes.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-02-09 03:11:10 +0000
committerRoger Dingledine <arma@torproject.org>2008-02-09 03:11:10 +0000
commit509d2912dcc533ececaa9f09f96271ae57a7f275 (patch)
tree41fe2c4933605cee965a5328fb89e4a83bb004e3 /src/common/aes.c
parentbe1e577d5e44d1ab1c9b180e644dc05872faa88a (diff)
downloadtor-509d2912dcc533ececaa9f09f96271ae57a7f275.tar.gz
tor-509d2912dcc533ececaa9f09f96271ae57a7f275.zip
doxygen and other cleanups
svn:r13440
Diffstat (limited to 'src/common/aes.c')
-rw-r--r--src/common/aes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/aes.c b/src/common/aes.c
index cd8317dd11..96d5ca4126 100644
--- a/src/common/aes.c
+++ b/src/common/aes.c
@@ -286,7 +286,7 @@ aes_crypt(aes_cnt_cipher_t *cipher, const char *input, size_t len,
/* XXXX This function is up to 5% of our runtime in some profiles;
* we should look into unrolling some of the loops; taking advantage
- * of alignmement, using a bigger buffer, and so on. Not till after 0.1.2.x,
+ * of alignment, using a bigger buffer, and so on. Not till after 0.1.2.x,
* though. */
int c = cipher->pos;
if (PREDICT_UNLIKELY(!len)) return;
@@ -322,7 +322,7 @@ aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len)
/* XXXX This function is up to 5% of our runtime in some profiles;
* we should look into unrolling some of the loops; taking advantage
- * of alignmement, using a bigger buffer, and so on. Not till after 0.1.2.x,
+ * of alignment, using a bigger buffer, and so on. Not till after 0.1.2.x,
* though. */
int c = cipher->pos;
if (PREDICT_UNLIKELY(!len)) return;