What is the difference between CodeIgniter sha1 and regular PHP sha1? For instance:
$codeigniter_hashed = $this -> encrypt -> sha1( "test" );
and
$normal_hashed = sha1("test");
Both will return the same value. Where encryption_keydoes CodeIgniter use ?
Roman source
share