CryptInterface.php
1.83 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
<?php 
namespace Phalcon {
	/**
	 * Phalcon\CryptInterface initializer
	 */
	
	interface CryptInterface {
		/**
		 * Sets the cipher algorithm
		 *
		 * @param string $cipher
		 * @return \Phalcon\EncryptInterface
		 */
		public function setCipher($cipher);
		/**
		 * Returns the current cipher
		 *
		 * @return string
		 */
		public function getCipher();
		/**
		 * Sets the encrypt/decrypt mode
		 *
		 * @param string $cipher
		 * @return \Phalcon\EncryptInterface
		 */
		public function setMode($mode);
		/**
		 * Returns the current encryption mode
		 *
		 * @return string
		 */
		public function getMode();
		/**
		 * Sets the encryption key
		 *
		 * @param string $key
		 * @return \Phalcon\EncryptInterface
		 */
		public function setKey($key);
		/**
		 * Returns the encryption key
		 *
		 * @return string
		 */
		public function getKey();
		/**
		 * Encrypts a text
		 *
		 * @param string $text
		 * @param string $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 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();
	}
}