diff options
Diffstat (limited to 'cipher/cipher.c')
-rw-r--r-- | cipher/cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/cipher.c b/cipher/cipher.c index 4ef0d817a..f55ce8b4a 100644 --- a/cipher/cipher.c +++ b/cipher/cipher.c @@ -586,7 +586,7 @@ do_cfb_encrypt( CIPHER_HANDLE c, byte *outbuf, byte *inbuf, unsigned nbytes ) /* Now we can process complete blocks. We use a loop as long as we have at least 2 blocks and use conditions for the rest. This - also allows to use a bulk encryption function if available. */ + also allows use of a bulk encryption function if available. */ #ifdef USE_AES if (nbytes >= blocksize_x_2 && (c->algo == CIPHER_ALGO_AES @@ -677,7 +677,7 @@ do_cfb_decrypt( CIPHER_HANDLE c, byte *outbuf, byte *inbuf, unsigned nbytes ) /* Now we can process complete blocks. We use a loop as long as we have at least 2 blocks and use conditions for the rest. This - also allows to use a bulk encryption function if available. */ + also allows use of a bulk encryption function if available. */ #ifdef USE_AES if (nbytes >= blocksize_x_2 && (c->algo == CIPHER_ALGO_AES |