equal
deleted
inserted
replaced
90 // recommended except for tiny sites because encrypting an average of 2MB of data will take a while. |
90 // recommended except for tiny sites because encrypting an average of 2MB of data will take a while. |
91 // define('SQL_BACKUP_CRYPT', ''); |
91 // define('SQL_BACKUP_CRYPT', ''); |
92 |
92 |
93 // Security |
93 // Security |
94 |
94 |
95 define('AES_BITS', 192); // AES cipher strength - defaults to 192 and cannot be changed after installation |
95 // AES cipher strength - defaults to 192 and cannot be changed after installation. |
|
96 // This can be 128, 192, or 256. |
|
97 define('AES_BITS', 192); |
96 |
98 |
97 // Define this to enable Mcrypt support which makes encryption work faster. This is only triggered if Mcrypt support is detected. |
99 // Define this to enable Mcrypt support which makes encryption work faster. This is only triggered if Mcrypt support is detected. |
98 // THIS IS DISABLED BECAUSE MCRYPT DOES NOT SEEM TO SUPPORT THE AES BLOCK SIZES THAT ENANO USES. |
100 // THIS IS DISABLED BECAUSE MCRYPT DOES NOT SEEM TO SUPPORT THE AES BLOCK SIZES THAT ENANO USES. |
99 //define('MCRYPT_ACCEL', ''); |
101 //define('MCRYPT_ACCEL', ''); |
100 |
102 |