php-src/ext/mcrypt/php_mcrypt.h

21 lines
392 B
C
Raw Normal View History

1999-04-25 16:50:40 +00:00
#ifndef PHP_MCRYPT_H
#define PHP_MCRYPT_H
#if HAVE_LIBMCRYPT
extern zend_module_entry mcrypt_module_entry;
#define mcrypt_module_ptr &mcrypt_module_entry
PHP_FUNCTION(mcrypt_ecb);
1999-04-25 17:04:56 +00:00
PHP_FUNCTION(mcrypt_cbc);
PHP_FUNCTION(mcrypt_cfb);
1999-04-25 20:32:15 +00:00
PHP_FUNCTION(mcrypt_get_block_size);
PHP_FUNCTION(mcrypt_get_key_size);
1999-04-25 21:09:07 +00:00
PHP_FUNCTION(mcrypt_create_iv);
1999-04-25 16:50:40 +00:00
#else
#define mcrypt_module_ptr NULL
#endif
#endif