I am just curious, is this the correct way to implement blowfish encryption?
class:
<?php
/*
* @package "Gludoe CMS"
* @version 1.0.1
* @authors "Robert Pettet"
* @support https://www.gludoe.com/
* @licence https://www.gludoe.com/commons/licence-1.0.0.txt
*/
if (!defined('_ROOT'))...
I'm trying to use a simple encryption class and getting 500 errors. I was able to pinpoint the error to a check for CRYPT_BLOWFISH:
if( CRYPT_BLOWFISH == 1 )
{
// ....
}
I thought all php 5.3.X installations were supposed to have CRYPT_BLOWFISH defined. What can I do? The encryption...
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.