Files
CIEF Dev Team 09421c18b8 Initial commit
2018-03-07 16:15:53 +08:00

11 lines
159 B
PHP

<?php
namespace Kunststube\CSRFP;
interface ICryptoProvider {
public function getRandomHexString($length);
public function hash($data, $secret);
}