1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\SignatureCalculator\Encoder\Algorithms;
6
7 class Sha256Algorithm extends AbstractAlgorithm
8 {
9 /**
10 * @return string
11 */
12 public function getName()
13 {
14 return 'SHA256';
15 }
16 }
17