mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/IZYIM-Manufacturer.git
synced 2026-08-19 04:13:56 +00:00
11 lines
159 B
PHP
11 lines
159 B
PHP
<?php
|
|
|
|
namespace Kunststube\CSRFP;
|
|
|
|
|
|
interface ICryptoProvider {
|
|
|
|
public function getRandomHexString($length);
|
|
public function hash($data, $secret);
|
|
|
|
} |