Sample code for 30+ languages & platforms
PHP ActiveX

Example: SecureString.HashVal method

Demonstrates the HashVal method.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$success = 0;

$str = new COM("Chilkat.SecureString");
$str->MaintainHash = 'sha256';
$str->Append('Hello World');

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

?>