PHP Extension
PHP Extension
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat PHP Extension Downloads
<?php
include("chilkat.php");
$success = false;
$str = new CkSecureString();
$str->put_MaintainHash('sha256');
$str->Append('Hello World');
$encodedHash = $str->hashVal('base64');
print $encodedHash . "\n";
?>