phpsec.crypt.php
6.65 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/**
phpSec - A PHP security library
@author Audun Larsen <larsen@xqus.com>
@copyright Copyright (c) Audun Larsen, 2011
@link https://github.com/phpsec/phpSec
@license http://opensource.org/licenses/mit-license.php The MIT License
@package phpSec
*/
/**
* Provides methods for encrypting data.
*/
class phpsecCrypt {
public static $_algo = 'rijndael-256';
public static $_mode = 'ctr';
public static $_padding = true;
const HASH_TYPE = 'sha256';
/**
* Encrypt data returning a JSON encoded array safe for storage in a database
* or file. The array has the following structure before it is encoded:
* array(
* 'cdata' => 'Encrypted data, Base 64 encoded',
* 'iv' => 'Base64 encoded IV',
* 'algo' => 'Algorythm used',
* 'mode' => 'Mode used',
* 'mac' => 'Message Authentication Code'
* )
*
* @param mixed $data
* Data to encrypt.
*
* @param string $key
* Key to encrypt data with.
*
* @return string
* Serialized array containing the encrypted data along with some meta data.
*/
public static function encrypt($data, $key) {
$td = mcrypt_module_open(self::$_algo, '', self::$_mode, '');
/* Check key size. */
$keySize = strlen($key);
$keySizes = mcrypt_enc_get_supported_key_sizes($td);
if(count($keySizes) > 0) {
/* Encryption method requires a specific key size. */
if(!in_array($keySize, $keySizes)) {
phpsec::error('Key is out of range. Should be one of: '. var_export($keySizes ,1));
return false;
}
} else {
/* No spsecific size is needed. */
if($keySize == 0 || $keySize > mcrypt_enc_get_key_size($td)) {
phpsec::error('Key is out of range. Should be: 1 - ' . mcrypt_enc_get_key_size($td).' bytes.');
return false;
}
}
/* Create IV. */
$iv = phpsecRand::bytes(mcrypt_enc_get_iv_size($td));
/* Init mcrypt. */
mcrypt_generic_init($td, $key, $iv);
/* Prepeare the array with data. */
$serializedData = serialize($data);
/* Add padding if enabled. */
if(self::$_padding === true) {
$block = mcrypt_enc_get_block_size($td);
$serializedData = self::pad($block, $serializedData);
}
$encrypted['algo'] = self::$_algo; /* Algorithm used to encrypt. */
$encrypted['mode'] = self::$_mode; /* Algorithm mode. */
$encrypted['iv'] = base64_encode($iv); /* Initialization vector, just a bunch of randomness. */
$encrypted['cdata'] = base64_encode(mcrypt_generic($td, $serializedData)); /* The encrypted data. */
$encrypted['mac'] = base64_encode( /* The message authentication code. Used to make sure the */
self::pbkdf2($encrypted['cdata'], $key, 1000, 32) /* message is valid when decrypted. */
);
return json_encode($encrypted);
}
/**
* Strip PKCS7 padding and decrypt
* data encrypted by encrypt().
*
* @param string $data
* JSON string containing the encrypted data and meta information in the
* excact format as returned by encrypt().
*
* @return mixed
* Decrypted data in it's original form.
*/
public static function decrypt($data, $key) {
/* Decode the JSON string */
$data = json_decode($data, true);
$dataStructure = array(
'algo' => true,
'mode' => true,
'iv' => true,
'cdata' => true,
'mac' => true,
);
if($data === null || phpsec::arrayCheck($data, $dataStructure) !== true) {
phpsec::error('Invalid data passed to decrypt()');
return false;
}
/* Everything looks good so far. Let's continue.*/
$td = mcrypt_module_open($data['algo'], '', $data['mode'], '');
$block = mcrypt_enc_get_block_size($td);
/* Check MAC. */
if(base64_decode($data['mac']) != self::pbkdf2($data['cdata'], $key, 1000, 32)) {
phpsec::error('Message authentication code invalid');
return false;
}
/* Init mcrypt. */
mcrypt_generic_init($td, $key, base64_decode($data['iv']));
$decrypted = rtrim(mdecrypt_generic($td, base64_decode(self::stripPadding($block, $data['cdata']))));
/* Close up. */
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
/*Return decrypted data. */
return unserialize($decrypted);
}
/**
* Implement PBKDF2 as described in RFC 2898.
*
* @param string $p
* Password to protect.
*
* @param string $s
* Salt.
*
* @param integer $c
* Iteration count.
*
* @param integer $dkLen
* Derived key length.
*
* @param string $a
* A hash algorithm.
*
* @return binary
* Derived key.
*/
public static function pbkdf2($p, $s, $c, $dkLen, $a = 'sha256') {
$hLen = strlen(hash($a, null, true)); /* Hash length. */
$l = ceil($dkLen / $hLen); /* Length in blocks of derived key. */
$dk = ''; /* Derived key. */
/* Step 1. Check dkLen. */
if($dkLen > (2^32-1) * $hLen) {
phpsec::error('Derived key too long');
return false;
}
for ($block = 1; $block<=$l; $block ++) {
/* Initial hash for this block. */
$ib = $b = hash_hmac($a, $s . pack('N', $block), $p, true);
/* Do block iterations. */
for ($i = 1; $i<$c; $i ++) {
/* XOR iteration. */
$ib ^= ($b = hash_hmac($a, $b, $p, true));
}
/* Append iterated block. */
$dk .= $ib;
}
/* Returned derived key. */
return substr($dk, 0, $dkLen);
}
/**
* PKCS7-pad data.
* Add bytes of data to fill up the last block.
* PKCS7 padding adds bytes with the same value that the number of bytes that are added.
* @see http://tools.ietf.org/html/rfc5652#section-6.3
*
* @param integer $block
* Block size.
*
* @param string $data
* Data to pad.
*
* @return string
* Padded data.
*/
public static function pad($block, $data) {
$pad = $block - (strlen($data) % $block);
$data .= str_repeat(chr($pad), $pad);
return $data;
}
/**
* Strip PKCS7-padding.
*
* @param integer $block
* Block size.
*
* @param string $data
* Padded data.
*
* @return string
* Original data.
*/
public static function stripPadding($block, $data) {
$pad = ord($data[($len = strlen($data)) - 1]);
/* Check that what we have at the end of the string really is padding, and if it is remove it. */
if ($pad && $pad < $block && preg_match('/' . chr($pad) . '{' . $pad . '}$/', $data)) {
return substr($data, 0, -$pad);
}
return $data;
}
}