Pop\Crypt\Md5::__construct PHP Method

__construct() public method

Instantiate the md5 object.
public __construct ( ) : self
return self
    public function __construct()
    {
        if (CRYPT_MD5 == 0) {
            throw new Exception('Error: MD5 hashing is not supported on this system.');
        }
    }