Crypt.php
2.89 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?php
namespace Phalcon {
/**
* Phalcon\Crypt
*
* Provides encryption facilities to phalcon applications
*
*<code>
* $crypt = new Phalcon\Crypt();
*
* $key = 'le password';
* $text = 'This is a secret text';
*
* $encrypted = $crypt->encrypt($text, $key);
*
* echo $crypt->decrypt($encrypted, $key);
*</code>
*/
class Crypt implements \Phalcon\CryptInterface {
const PADDING_DEFAULT = 0;
const PADDING_ANSI_X_923 = 1;
const PADDING_PKCS7 = 2;
const PADDING_ISO_10126 = 3;
const PADDING_ISO_IEC_7816_4 = 4;
const PADDING_ZERO = 5;
const PADDING_SPACE = 6;
protected $_key;
protected $_mode;
protected $_cipher;
protected $_padding;
/**
* Sets the cipher algorithm
*
* @param string $cipher
* @return \Phalcon\Encrypt
*/
public function setCipher($cipher){ }
/**
* Returns the current cipher
*
* @return string
*/
public function getCipher(){ }
/**
* Sets the encrypt/decrypt mode
*
* @param string $cipher
* @return \Phalcon\Encrypt
*/
public function setMode($mode){ }
/**
* Returns the current encryption mode
*
* @return string
*/
public function getMode(){ }
/**
* Sets the encryption key
*
* @param string $key
* @return \Phalcon\Encrypt
*/
public function setKey($key){ }
/**
* Returns the encryption key
*
* @return string
*/
public function getKey(){ }
/**
* @brief \Phalcon\CryptInterface \Phalcon\Crypt::setPadding(int $scheme)
*
* @param int scheme Padding scheme
* @return \Phalcon\CryptInterface
*/
public function setPadding($scheme){ }
/**
* Returns the padding scheme
*
* @brief int \Phalcon\Crypt::getPadding()
* @return int
*/
public function getPadding(){ }
/**
* Encrypts a text
*
*<code>
* $encrypted = $crypt->encrypt("Ultra-secret text", "encrypt password");
*</code>
*
* @param string $text
* @param string $key
* @return string
*/
public function encrypt($text, $key=null){ }
/**
* Decrypts an encrypted text
*
*<code>
* echo $crypt->decrypt($encrypted, "decrypt password");
*</code>
*
* @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 string $key
* @return string
*/
public function encryptBase64($text, $key=null){ }
/**
* Decrypt a text that is coded as a base64 string
*
* @param string $text
* @param string $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(){ }
}
}