1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\SignatureCalculator\Encoder\Algorithms;
6
7 /**
8 * Represent algorithm in which encrypt/hash some data.
9 *
10 * Interface AlgorithmInterface
11 * @package Team3\PayU\SignatureCalculator\Encoder\Algorithms
12 */
13 interface AlgorithmInterface
14 {
15 /**
16 * @return string
17 */
18 public function getName();
19 }
20