Files
CIEF Dev Team 4716562987 Initial commit
2018-03-06 13:21:45 +00:00

11 lines
159 B
PHP
Executable File

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