| 1: | <?php declare(strict_types=1); |
| 2: | |
| 3: | namespace Salient\Contract; |
| 4: | |
| 5: | |
| 6: | |
| 7: | |
| 8: | interface HasHmacHashAlgorithm |
| 9: | { |
| 10: | public const ALGORITHM_SHA1 = 'sha1'; |
| 11: | public const ALGORITHM_SHA256 = 'sha256'; |
| 12: | public const ALGORITHM_SHA512 = 'sha512'; |
| 13: | } |
| 14: | |