]> granicus.if.org Git - php/commitdiff
- WS
authorPierre Joye <pajoye@php.net>
Tue, 8 Jun 2010 18:26:03 +0000 (18:26 +0000)
committerPierre Joye <pajoye@php.net>
Tue, 8 Jun 2010 18:26:03 +0000 (18:26 +0000)
ext/mcrypt/mcrypt.c

index 1e73674169b84b4188fa4e3f3c71b40eab15b333..b3c711b52976af427c72af94ac0c5da60881364a 100644 (file)
@@ -420,16 +420,16 @@ static void php_mcrypt_module_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) /* {{{
 static PHP_MINIT_FUNCTION(mcrypt) /* {{{ */
 {
        le_mcrypt = zend_register_list_destructors_ex(php_mcrypt_module_dtor, NULL, "mcrypt", module_number);
-    
+
        /* modes for mcrypt_??? routines */
        REGISTER_LONG_CONSTANT("MCRYPT_ENCRYPT", 0, CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("MCRYPT_DECRYPT", 1, CONST_PERSISTENT);
-       
+
        /* sources for mcrypt_create_iv */
        REGISTER_LONG_CONSTANT("MCRYPT_DEV_RANDOM", 0, CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("MCRYPT_DEV_URANDOM", 1, CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("MCRYPT_RAND", 2, CONST_PERSISTENT);
-       
+
        /* ciphers */
        MCRYPT_ENTRY2_2_4(3DES, "tripledes");
        MCRYPT_ENTRY2_2_4(ARCFOUR_IV, "arcfour-iv");