1--TEST--
2Crypto\Hash::getAlgorithmName basic usage.
3--FILE--
4<?php
5// basic creation
6$algorithm = new Crypto\Hash('sha256');
7echo $algorithm->getAlgorithmName() . "\n"
8?>
9--EXPECT--
10SHA256
11