$hash
$hash :
A very simplistic wrapper for the PHP Hash library.
In addition to the normal hash methods, it provides a base64() method which will return a base64 representation of the binary Hash digest.
Usage:
$hash = new Hash('sha256'); $hash->update('Hello'); $hash->update('World'); $str = $hash->final();