mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 05:14:12 +01:00
13 lines
211 B
PHP
13 lines
211 B
PHP
<?php
|
|
|
|
/**
|
|
* Interface for encryption engines
|
|
*/
|
|
interface CryptEngine
|
|
{
|
|
public static function GetNewDefaultParams();
|
|
|
|
function Encrypt($key, $sString);
|
|
|
|
function Decrypt($key, $encrypted_data);
|
|
} |