forked from phalcon/incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCryptInterface.php
127 lines (113 loc) · 3.14 KB
/
CryptInterface.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2016 Phalcon Team (https://www.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 license@phalconphp.com so we can send you a copy immediately. |
+------------------------------------------------------------------------+
| Authors: Andres Gutierrez <andres@phalconphp.com> |
| Eduar Carvajal <eduar@phalconphp.com> |
+------------------------------------------------------------------------+
*/
namespace Phalcon\Legacy;
/**
* Phalcon\Legacy\CryptInterface
*
* Interface for Phalcon\Legacy\Crypt
*
* @link https://github.com/phalcon/incubator/issues/563
* @package Phalcon\Legacy
*/
interface CryptInterface
{
/**
* Sets the cipher algorithm
*
* @param string $cipher
* @return CryptInterface
*/
public function setCipher($cipher);
/**
* Returns the current cipher
*
* @return string
*/
public function getCipher();
/**
* Sets the encrypt/decrypt mode
*
* @param string $mode
* @return CryptInterface
*/
public function setMode($mode);
/**
* Returns the current encryption mode
*
* @return string
*/
public function getMode();
/**
* Sets the encryption key
*
* @param string $key
* @return CryptInterface
*/
public function setKey($key);
/**
* Returns the encryption key
*
* @return string
*/
public function getKey();
/**
* Encrypts a text
*
* @param string $text
* @param mixed $key
* @return string
*/
public function encrypt($text, $key = null);
/**
* Decrypts a text
*
* @param string $text
* @param string $key
* @return string
*/
public function decrypt($text, $key = null);
/**
* Encrypts a text returning the result as a base64 string
*
* @param string $text
* @param mixed $key
* @return string
*/
public function encryptBase64($text, $key = null);
/**
* Decrypt a text that is coded as a base64 string
*
* @param string $text
* @param mixed $key
* @return string
*/
public function decryptBase64($text, $key = null);
/**
* Returns a list of available cyphers
*
* @return array
*/
public function getAvailableCiphers();
/**
* Returns a list of available modes
*
* @return array
*/
public function getAvailableModes();
}