-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathCookie.php
194 lines (188 loc) · 5.04 KB
/
Cookie.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
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
<?php
declare(strict_types=1);
namespace ParagonIE\Halite;
use ParagonIE\ConstantTime\{
Base64UrlSafe,
Binary,
Hex
};
use ParagonIE\Halite\Alerts\{
CannotPerformOperation,
InvalidDigestLength,
InvalidMessage,
InvalidSignature,
InvalidType
};
use ParagonIE\Halite\Symmetric\{
Config as SymmetricConfig,
Crypto,
EncryptionKey
};
use ParagonIE\HiddenString\HiddenString;
/**
* Class Cookie
*
* Secure encrypted cookies
*
* This library makes heavy use of return-type declarations,
* which are a PHP 7 only feature. Read more about them here:
*
* @ref http://php.net/manual/en/functions.returning-values.php#functions.returning-values.type-declaration
*
* @package ParagonIE\Halite
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* @codeCoverageIgnore
*/
final class Cookie
{
/**
* @var EncryptionKey
*/
protected $key;
/**
* Cookie constructor.
* @param EncryptionKey $key
*/
public function __construct(EncryptionKey $key)
{
$this->key = $key;
}
/**
* Hide this from var_dump(), etc.
*
* @return array
*/
public function __debugInfo()
{
return [
'key' => 'private'
];
}
/**
* Fetch a value from an encrypted cookie
*
* @param string $name
* @return mixed|null (typically an array)
* @throws InvalidDigestLength
* @throws InvalidSignature
* @throws CannotPerformOperation
* @throws InvalidType
* @throws \TypeError
*/
public function fetch(string $name)
{
if (!isset($_COOKIE[$name])) {
return null;
}
try {
/** @var string|array|int|float|bool $stored */
$stored = $_COOKIE[$name];
if (!\is_string($stored)) {
throw new InvalidType('Cookie value is not a string');
}
$config = self::getConfig($stored);
$decrypted = Crypto::decrypt(
$stored,
$this->key,
$config->ENCODING
);
return \json_decode($decrypted->getString(), true);
} catch (InvalidMessage $e) {
return null;
}
}
/**
* Get the configuration for this version of halite
*
* @param string $stored A stored password hash
* @return SymmetricConfig
*
* @throws InvalidMessage
* @throws \TypeError
*/
protected static function getConfig(string $stored): SymmetricConfig
{
$length = Binary::safeStrlen($stored);
// This doesn't even have a header.
if ($length < 8) {
throw new InvalidMessage(
'Encrypted password hash is way too short.'
);
}
if (\hash_equals(Binary::safeSubstr($stored, 0, 5), Halite::VERSION_PREFIX)) {
$decoded = Base64UrlSafe::decode($stored);
return SymmetricConfig::getConfig(
$decoded,
'encrypt'
);
}
$v = Hex::decode(Binary::safeSubstr($stored, 0, 8));
return SymmetricConfig::getConfig($v, 'encrypt');
}
/**
* Store a value in an encrypted cookie
*
* @param string $name
* @param mixed $value
* @param int $expire (defaults to 0)
* @param string $path (defaults to '/')
* @param string $domain (defaults to NULL)
* @param bool $secure (defaults to TRUE)
* @param bool $httpOnly (defaults to TRUE)
* @param string $samesite (defaults to ''; PHP >= 7.3.0)
* @return bool
*
* @throws InvalidDigestLength
* @throws CannotPerformOperation
* @throws InvalidMessage
* @throws InvalidType
* @throws \TypeError
* @psalm-suppress MixedArgument
*/
public function store(
string $name,
$value,
int $expire = 0,
string $path = '/',
string $domain = '',
bool $secure = true,
bool $httpOnly = true,
string $sameSite = ''
): bool {
$val = Crypto::encrypt(
new HiddenString(
(string) \json_encode($value)
),
$this->key
);
if (\version_compare(PHP_VERSION, '7.3.0') >= 0) {
$options = [
'expires' => (int) $expire,
'path' => (string) $path,
'domain' => (string) $domain,
'secure' => (bool) $secure,
'httponly' => (bool) $httpOnly,
];
if ($sameSite !== '') {
$options['samesite'] = (string) $sameSite;
}
return \setcookie(
$name,
$val,
$options);
}
return \setcookie(
$name,
$val,
(int) $expire,
(string) $path,
(string) $domain,
(bool) $secure,
(bool) $httpOnly
);
}
}