-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCookieValuePrefix.php
48 lines (43 loc) · 1.18 KB
/
CookieValuePrefix.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
<?php
namespace Illuminate\Cookie;
class CookieValuePrefix
{
/**
* Create a new cookie value prefix for the given cookie name.
*
* @param string $cookieName
* @param string $key
* @return string
*/
public static function create($cookieName, $key)
{
return hash_hmac('sha1', $cookieName.'v2', $key).'|';
}
/**
* Remove the cookie value prefix.
*
* @param string $cookieValue
* @return string
*/
public static function remove($cookieValue)
{
return substr($cookieValue, 41);
}
/**
* Validate a cookie value contains a valid prefix. If it does, return the cookie value with the prefix removed. Otherwise, return null.
*
* @param string $cookieName
* @param string $cookieValue
* @param array $keys
* @return string|null
*/
public static function validate($cookieName, $cookieValue, array $keys)
{
foreach ($keys as $key) {
$hasValidPrefix = str_starts_with($cookieValue, static::create($cookieName, $key));
if ($hasValidPrefix) {
return static::remove($cookieValue);
}
}
}
}