Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
signingalgorithm.php
1<?php
3
5
11abstract class SigningAlgorithm
12{
21 public function getSignature($value, $key)
22 {
23 throw new NotImplementedException('Method getSignature must be overridden');
24 }
25
34 public function verify($value, $key, $sig)
35 {
36 return $sig === $this->getSignature($value, $key);
37 }
38}