1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* The MIT License (MIT) |
5
|
|
|
* |
6
|
|
|
* Copyright (c) 2014-2016 Spomky-Labs |
7
|
|
|
* |
8
|
|
|
* This software may be modified and distributed under the terms |
9
|
|
|
* of the MIT license. See the LICENSE file for details. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Jose\Algorithm\KeyEncryption; |
13
|
|
|
|
14
|
|
|
use Assert\Assertion; |
15
|
|
|
use Base64Url\Base64Url; |
16
|
|
|
use Jose\Object\JWKInterface; |
17
|
|
|
use Jose\Util\StringUtil; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* Class PBES2AESKW. |
21
|
|
|
*/ |
22
|
|
|
abstract class PBES2AESKW implements KeyWrappingInterface |
23
|
|
|
{ |
24
|
|
|
/** |
25
|
|
|
* @var int |
26
|
|
|
*/ |
27
|
|
|
private $salt_size; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @var int |
31
|
|
|
*/ |
32
|
|
|
private $nb_count; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @param int $salt_size |
36
|
|
|
* @param int $nb_count |
37
|
|
|
*/ |
38
|
|
|
public function __construct($salt_size = 64, $nb_count = 4096) |
39
|
|
|
{ |
40
|
|
|
$this->salt_size = $salt_size; |
41
|
|
|
$this->nb_count = $nb_count; |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* {@inheritdoc} |
46
|
|
|
*/ |
47
|
|
|
public function wrapKey(JWKInterface $key, $cek, array $complete_headers, array &$additional_headers) |
48
|
|
|
{ |
49
|
|
|
$this->checkKey($key); |
50
|
|
|
$this->checkHeaderAlgorithm($complete_headers); |
51
|
|
|
$wrapper = $this->getWrapper(); |
52
|
|
|
$hash_algorithm = $this->getHashAlgorithm(); |
53
|
|
|
$key_size = $this->getKeySize(); |
54
|
|
|
$salt = StringUtil::generateRandomBytes($this->salt_size); |
55
|
|
|
$password = Base64Url::decode($key->get('k')); |
56
|
|
|
|
57
|
|
|
// We set headers parameters |
58
|
|
|
$additional_headers['p2s'] = Base64Url::encode($salt); |
59
|
|
|
$additional_headers['p2c'] = $this->nb_count; |
60
|
|
|
|
61
|
|
|
$derived_key = hash_pbkdf2($hash_algorithm, $password, $complete_headers['alg']."\x00".$salt, $this->nb_count, $key_size, true); |
62
|
|
|
|
63
|
|
|
return $wrapper->wrap($derived_key, $cek); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* {@inheritdoc} |
68
|
|
|
*/ |
69
|
|
|
public function unwrapKey(JWKInterface $key, $encrypted_cek, array $header) |
70
|
|
|
{ |
71
|
|
|
$this->checkKey($key); |
72
|
|
|
$this->checkHeaderAlgorithm($header); |
73
|
|
|
$this->checkHeaderAdditionalParameters($header); |
74
|
|
|
$wrapper = $this->getWrapper(); |
75
|
|
|
$hash_algorithm = $this->getHashAlgorithm(); |
76
|
|
|
$key_size = $this->getKeySize(); |
77
|
|
|
$salt = $header['alg']."\x00".Base64Url::decode($header['p2s']); |
78
|
|
|
$count = $header['p2c']; |
79
|
|
|
$password = Base64Url::decode($key->get('k')); |
80
|
|
|
|
81
|
|
|
$derived_key = hash_pbkdf2($hash_algorithm, $password, $salt, $count, $key_size, true); |
82
|
|
|
|
83
|
|
|
return $wrapper->unwrap($derived_key, $encrypted_cek); |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* {@inheritdoc} |
88
|
|
|
*/ |
89
|
|
|
public function getKeyManagementMode() |
90
|
|
|
{ |
91
|
|
|
return self::MODE_WRAP; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* @param JWKInterface $key |
96
|
|
|
*/ |
97
|
|
|
protected function checkKey(JWKInterface $key) |
98
|
|
|
{ |
99
|
|
|
Assertion::eq($key->get('kty'), 'oct', 'Wrong key type.'); |
100
|
|
|
Assertion::true($key->has('k'), 'The key parameter "k" is missing.'); |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* @param array $header |
105
|
|
|
*/ |
106
|
|
|
protected function checkHeaderAlgorithm(array $header) |
107
|
|
|
{ |
108
|
|
|
Assertion::keyExists($header, 'alg', 'The header parameter "alg" is missing.'); |
109
|
|
|
Assertion::notEmpty($header['alg'], 'The header parameter "alg" is not valid.'); |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
/** |
113
|
|
|
* @param array $header |
114
|
|
|
*/ |
115
|
|
|
protected function checkHeaderAdditionalParameters(array $header) |
116
|
|
|
{ |
117
|
|
|
Assertion::keyExists($header, 'p2s', 'The header parameter "p2s" is missing.'); |
118
|
|
|
Assertion::notEmpty($header['p2s'], 'The header parameter "p2s" is not valid.'); |
119
|
|
|
Assertion::keyExists($header, 'p2c', 'The header parameter "p2c" is missing.'); |
120
|
|
|
Assertion::notEmpty($header['p2c'], 'The header parameter "p2c" is not valid.'); |
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
/** |
124
|
|
|
* @return \AESKW\A128KW|\AESKW\A192KW|\AESKW\A256KW |
125
|
|
|
*/ |
126
|
|
|
abstract protected function getWrapper(); |
127
|
|
|
|
128
|
|
|
/** |
129
|
|
|
* @return string |
130
|
|
|
*/ |
131
|
|
|
abstract protected function getHashAlgorithm(); |
132
|
|
|
|
133
|
|
|
/** |
134
|
|
|
* @return int |
135
|
|
|
*/ |
136
|
|
|
abstract protected function getKeySize(); |
137
|
|
|
} |
138
|
|
|
|