Your IP : 216.73.216.79


Current Path : /var/www/html/persada/common/components/payment.backup/
Upload File :
Current File : /var/www/html/persada/common/components/payment.backup/PaymentHashInterface.php

<?php 
namespace common\components\payment;

interface PaymentHashInterface extends PaymentInterface {
    public static function generateHash(string $payload, string $secret);
    
    public static function checkHash(string $hash, string $hash_compare);
}