[or-cvs] r11490: minor style tweaks (tor/trunk/src/common)

arma at seul.org arma at seul.org
Tue Sep 18 17:18:14 UTC 2007


Author: arma
Date: 2007-09-18 13:18:14 -0400 (Tue, 18 Sep 2007)
New Revision: 11490

Modified:
   tor/trunk/src/common/crypto.c
Log:
minor style tweaks


Modified: tor/trunk/src/common/crypto.c
===================================================================
--- tor/trunk/src/common/crypto.c	2007-09-18 17:07:56 UTC (rev 11489)
+++ tor/trunk/src/common/crypto.c	2007-09-18 17:18:14 UTC (rev 11490)
@@ -1144,9 +1144,9 @@
   return 0;
 }
 
-#define AES_CIPHER_BLOCK_SIZE (16)
+#define AES_CIPHER_BLOCK_SIZE 16
 
-#define AES_IV_SIZE (16)
+#define AES_IV_SIZE 16
 
 /** Encrypt <b>fromlen</b> bytes (at least 1) from <b>from</b> with the
  * symmetric key <b>key</b> of 16 bytes length to <b>to</b> of length
@@ -1161,7 +1161,7 @@
 
   EVP_CIPHER_CTX ctx_msg, ctx_iv; /* cipher contexts for message and IV */
   unsigned char iv[AES_IV_SIZE]; /* initialization vector */
-  int outlen, tmplen; /* length of encrypted strings (w/ and wo/ final data) */
+  int outlen, tmplen; /* length of encrypted strings (w/ and w/o final data) */
 
   tor_assert(key);
   tor_assert(to);
@@ -1194,7 +1194,7 @@
   }
 
   /* clear all information from cipher context for the initialization vector
-   * and free up any allocated memory associate with it */
+   * and free up any allocated memory associated with it */
   EVP_CIPHER_CTX_cleanup(&ctx_iv);
 
   /* initialize cipher context for the message */
@@ -1224,7 +1224,7 @@
   outlen += tmplen;
 
   /* clear all information from cipher context and free up any allocated memory
-   * associate with it */
+   * associated with it */
   EVP_CIPHER_CTX_cleanup(&ctx_msg);
 
   /* return number of written bytes */



More information about the tor-commits mailing list