Correct comment
diff --git a/programs/aes/aescrypt2.c b/programs/aes/aescrypt2.c
index 7cd3349..4acf38d 100644
--- a/programs/aes/aescrypt2.c
+++ b/programs/aes/aescrypt2.c
@@ -155,7 +155,7 @@
     }
 
     /*
-     * Read the secret key and clean the command line.
+     * Read the secret key from file or command line
      */
     if( ( fkey = fopen( argv[4], "rb" ) ) != NULL )
     {
@@ -318,7 +318,6 @@
 
     if( mode == MODE_DECRYPT )
     {
-
         /*
          *  The encrypted file must be structured as follows:
          *
diff --git a/programs/aes/crypt_and_hash.c b/programs/aes/crypt_and_hash.c
index a16e91e..0e272eb 100644
--- a/programs/aes/crypt_and_hash.c
+++ b/programs/aes/crypt_and_hash.c
@@ -192,7 +192,7 @@
     }
 
     /*
-     * Read the secret key and clean the command line.
+     * Read the secret key from file or command line
      */
     if( ( fkey = fopen( argv[6], "rb" ) ) != NULL )
     {