PHP ActiveX
PHP ActiveX
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat PHP ActiveX Downloads
<?php
$success = 0;
$str = new COM("Chilkat.SecureString");
$str->MaintainHash = 'sha256';
$str->Append('Hello World');
$encodedHash = $str->hashVal('base64');
print $encodedHash . "\n";
?>