Sample code for 30+ languages & platforms
PHP Extension

Example: SecureString.HashVal method

Demonstrates the HashVal method.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$success = false;

$str = new CkSecureString();
$str->put_MaintainHash('sha256');
$str->Append('Hello World');

$encodedHash = $str->hashVal('base64');
print $encodedHash . "\n";

?>