diff options
author | Egon Schmid <eschmid@php.net> | 2000-06-18 20:01:45 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-06-18 20:01:45 +0000 |
commit | c3cc31c74564a93b941088ab2a2dc2cca33bdf5b (patch) | |
tree | 86dc33f470cf59f805e15243fe1982516aed321b /ext/mcrypt/mcrypt.c | |
parent | dd43255b276d2b8cc6d5400d942997045b3fff5a (diff) | |
download | php-git-c3cc31c74564a93b941088ab2a2dc2cca33bdf5b.tar.gz |
No response from Sascha so changed to lowercase.
Diffstat (limited to 'ext/mcrypt/mcrypt.c')
-rw-r--r-- | ext/mcrypt/mcrypt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index 61a78f80de..4faebe82f1 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -177,7 +177,7 @@ typedef enum { } iv_source; /* {{{ proto string mcrypt_create_iv(int size, int source) - Create an initializing vector (IV) */ + Create an initializing vector (iv) */ PHP_FUNCTION(mcrypt_create_iv) { pval **size, **psource; @@ -282,7 +282,7 @@ PHP_FUNCTION(mcrypt_get_block_size) /* }}} */ /* {{{ proto string mcrypt_ofb(int cipher, string key, string data, int mode, string iv) - OFB crypt/decrypt data using key key with cipher cipher starting with IV */ + OFB crypt/decrypt data using key key with cipher cipher starting with iv */ PHP_FUNCTION(mcrypt_ofb) { MCRYPT_ARGS; @@ -304,7 +304,7 @@ PHP_FUNCTION(mcrypt_ofb) /* }}} */ /* {{{ proto string mcrypt_cfb(int cipher, string key, string data, int mode, string iv) - CFB crypt/decrypt data using key key with cipher cipher starting with IV */ + CFB crypt/decrypt data using key key with cipher cipher starting with iv */ PHP_FUNCTION(mcrypt_cfb) { MCRYPT_ARGS; @@ -327,7 +327,7 @@ PHP_FUNCTION(mcrypt_cfb) /* {{{ proto string mcrypt_cbc(int cipher, string key, string data, int mode [, string iv]) - CBC crypt/decrypt data using key key with cipher cipher using optional IV */ + CBC crypt/decrypt data using key key with cipher cipher using optional iv */ PHP_FUNCTION(mcrypt_cbc) { MCRYPT_ARGS; |