forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryptinterface.zep
75 lines (62 loc) · 2.14 KB
/
cryptinterface.zep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
| Authors: Andres Gutierrez <[email protected]> |
| Eduar Carvajal <[email protected]> |
+------------------------------------------------------------------------+
*/
namespace Phalcon;
/**
* Phalcon\CryptInterface
*
* Interface for Phalcon\Crypt
*/
interface CryptInterface
{
/**
* Sets the cipher algorithm
*/
public function setCipher(string! cipher) -> <CryptInterface>;
/**
* Returns the current cipher
*/
public function getCipher() -> string;
/**
* Sets the encryption key
*/
public function setKey(string! key) -> <CryptInterface>;
/**
* Returns the encryption key
*/
public function getKey() -> string;
/**
* Encrypts a text
*/
public function encrypt(string! text, key = null) -> string;
/**
* Decrypts a text
*/
public function decrypt(string! text, string! key = null) -> string;
/**
* Encrypts a text returning the result as a base64 string
*/
public function encryptBase64(string! text, key = null) -> string;
/**
* Decrypt a text that is coded as a base64 string
*/
public function decryptBase64(string! text, key = null) -> string;
/**
* Returns a list of available cyphers
*/
public function getAvailableCiphers() -> array;
}