1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* Copyright (c) 2017-present Ganbaro Digital Ltd |
7
|
|
|
* All rights reserved. |
8
|
|
|
* |
9
|
|
|
* Redistribution and use in source and binary forms, with or without |
10
|
|
|
* modification, are permitted provided that the following conditions |
11
|
|
|
* are met: |
12
|
|
|
* |
13
|
|
|
* * Redistributions of source code must retain the above copyright |
14
|
|
|
* notice, this list of conditions and the following disclaimer. |
15
|
|
|
* |
16
|
|
|
* * Redistributions in binary form must reproduce the above copyright |
17
|
|
|
* notice, this list of conditions and the following disclaimer in |
18
|
|
|
* the documentation and/or other materials provided with the |
19
|
|
|
* distribution. |
20
|
|
|
* |
21
|
|
|
* * Neither the names of the copyright holders nor the names of his |
22
|
|
|
* contributors may be used to endorse or promote products derived |
23
|
|
|
* from this software without specific prior written permission. |
24
|
|
|
* |
25
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
26
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
27
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
28
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
29
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
30
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
31
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
32
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
33
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
34
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
35
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
36
|
|
|
* POSSIBILITY OF SUCH DAMAGE. |
37
|
|
|
* |
38
|
|
|
* @category Libraries |
39
|
|
|
* @package MessagingPipeline/Operations |
40
|
|
|
* @author Stuart Herbert <[email protected]> |
41
|
|
|
* @copyright 2017-present Ganbaro Digital Ltd www.ganbarodigital.com |
42
|
|
|
* @license http://www.opensource.org/licenses/bsd-license.php BSD License |
43
|
|
|
* @link http://ganbarodigital.github.io/php-mv-messaging-pipeline |
44
|
|
|
*/ |
45
|
|
|
|
46
|
|
|
namespace GanbaroDigital\MessagingPipeline\V1\Operations; |
47
|
|
|
|
48
|
|
|
use GanbaroDigital\MessagingPipeline\V1\Constants\Hmac; |
49
|
|
|
use GanbaroDigital\MessagingPipeline\V1\Exceptions\HmacNotFound; |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* find the marker that we use to separate a HMAC from the message that |
53
|
|
|
* it is signing |
54
|
|
|
*/ |
55
|
|
|
class FindHmacMarker |
56
|
|
|
{ |
57
|
|
|
/** |
58
|
|
|
* find the hashed-message authentication code (HMAC) in a message |
59
|
|
|
* |
60
|
|
|
* @param string $message |
61
|
|
|
* the message that contains the HMAC |
62
|
|
|
* @return int |
63
|
|
|
* the position of the HMAC marker |
64
|
|
|
* |
65
|
|
|
* @throws HmacNotFound |
66
|
|
|
* if $message doesn't contain a HMAC where we expect to find it |
67
|
|
|
*/ |
68
|
|
|
public static function in(string $message) : int |
69
|
|
|
{ |
70
|
|
|
// the HMAC will be at the front of the string, if it exists at all |
71
|
|
|
$markerPos = strpos($message, Hmac::MARKER); |
72
|
|
|
if ($markerPos === false || !$markerPos > 0) { |
73
|
|
|
// no HMAC found |
74
|
|
|
throw HmacNotFound::newFromInputParameter($message, '$message'); |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
// all done |
78
|
|
|
return $markerPos; |
79
|
|
|
} |
80
|
|
|
} |