diff options
author | Derick Rethans <derick@php.net> | 2008-07-04 07:47:18 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2008-07-04 07:47:18 +0000 |
commit | 3657b0ab5c06f72eca6c16553c7491ebbb2bc325 (patch) | |
tree | 56a76233e0c479b13072d1025d11ba440484dea2 /ext/mcrypt/php_mcrypt.h | |
parent | e360ff747659191a137792a6eff09e2f8118eeb6 (diff) | |
download | php-git-3657b0ab5c06f72eca6c16553c7491ebbb2bc325.tar.gz |
- Revert that crap.
Diffstat (limited to 'ext/mcrypt/php_mcrypt.h')
-rw-r--r-- | ext/mcrypt/php_mcrypt.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/mcrypt/php_mcrypt.h b/ext/mcrypt/php_mcrypt.h index 6642d580f5..32fff82165 100644 --- a/ext/mcrypt/php_mcrypt.h +++ b/ext/mcrypt/php_mcrypt.h @@ -30,20 +30,6 @@ extern zend_module_entry mcrypt_module_entry; #define mcrypt_module_ptr &mcrypt_module_entry -typedef enum { - PHP_MCRYPT_IV_SOURCE_RANDOM = 0, - PHP_MCRYPT_IV_SOURCE_URANDOM, - PHP_MCRYPT_IV_SOURCE_RAND -} php_mcrypt_iv_source; - -typedef enum { - PHP_MCRYPT_ENCRYPT = 0, - PHP_MCRYPT_DECRYPT = 1, -} php_mcrypt_op; - -int php_mcrypt_iv(php_mcrypt_iv_source source, int size, char **iv_str, int *iv_len TSRMLS_DC); -int php_mcrypt_func(php_mcrypt_op op, char *cipher, char *mode, char *key_str, int key_len, char *iv_str, int iv_len, char *data_str, int data_len, char **data_copy, int *data_size TSRMLS_DC); - /* Functions for both old and new API */ PHP_FUNCTION(mcrypt_ecb); PHP_FUNCTION(mcrypt_cbc); |