diff options
author | Egon Schmid <eschmid@php.net> | 2000-06-18 19:18:30 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-06-18 19:18:30 +0000 |
commit | dd43255b276d2b8cc6d5400d942997045b3fff5a (patch) | |
tree | f5445f91674aa8fb78131d00a8b239b57aab7026 /ext/mcrypt/mcrypt.c | |
parent | e15172f0e2fb7c5f1cfd652ac14eebbb2f52f965 (diff) | |
download | php-git-dd43255b276d2b8cc6d5400d942997045b3fff5a.tar.gz |
More protos.
Diffstat (limited to 'ext/mcrypt/mcrypt.c')
-rw-r--r-- | ext/mcrypt/mcrypt.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index f83076f983..61a78f80de 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; @@ -226,7 +226,7 @@ PHP_FUNCTION(mcrypt_create_iv) /* }}} */ /* {{{ proto string mcrypt_get_cipher_name(int cipher) - get the name of cipher */ + Get the name of cipher */ PHP_FUNCTION(mcrypt_get_cipher_name) { pval **cipher; @@ -250,7 +250,7 @@ PHP_FUNCTION(mcrypt_get_cipher_name) /* }}} */ /* {{{ proto int mcrypt_get_key_size(int cipher) - get the key size of cipher */ + Get the key size of cipher */ PHP_FUNCTION(mcrypt_get_key_size) { pval **cipher; @@ -266,7 +266,7 @@ PHP_FUNCTION(mcrypt_get_key_size) /* }}} */ /* {{{ proto int mcrypt_get_block_size(int cipher) - get the block size of cipher */ + Get the block size of cipher */ PHP_FUNCTION(mcrypt_get_block_size) { pval **cipher; @@ -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; @@ -326,8 +326,8 @@ 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 */ +/* {{{ 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 */ PHP_FUNCTION(mcrypt_cbc) { MCRYPT_ARGS; |