1 | <?php |
||
5 | abstract class WebhookSignature |
||
6 | { |
||
7 | const EXPECTED_SCHEME = "v1"; |
||
8 | |||
9 | /** |
||
10 | * Verifies the signature header sent by Stripe. Throws a |
||
11 | * SignatureVerification exception if the verification fails for any |
||
12 | * reason. |
||
13 | * |
||
14 | * @param string $payload the payload sent by Stripe. |
||
15 | * @param string $header the contents of the signature header sent by |
||
16 | * Stripe. |
||
17 | * @param string $secret secret used to generate the signature. |
||
18 | * @param int $tolerance maximum difference allowed between the header's |
||
19 | * timestamp and the current time |
||
20 | * @throws \Stripe\Error\SignatureVerification if the verification fails. |
||
21 | * @return bool |
||
22 | */ |
||
23 | public static function verifyHeader($payload, $header, $secret, $tolerance = null) |
||
73 | |||
74 | /** |
||
75 | * Extracts the timestamp in a signature header. |
||
76 | * |
||
77 | * @param string $header the signature header |
||
78 | * @return int the timestamp contained in the header, or -1 if no valid |
||
79 | * timestamp is found |
||
80 | */ |
||
81 | private static function getTimestamp($header) |
||
97 | |||
98 | /** |
||
99 | * Extracts the signatures matching a given scheme in a signature header. |
||
100 | * |
||
101 | * @param string $header the signature header |
||
102 | * @param string $scheme the signature scheme to look for. |
||
103 | * @return array the list of signatures matching the provided scheme. |
||
104 | */ |
||
105 | private static function getSignatures($header, $scheme) |
||
119 | |||
120 | /** |
||
121 | * Computes the signature for a given payload and secret. |
||
122 | * |
||
123 | * The current scheme used by Stripe ("v1") is HMAC/SHA-256. |
||
124 | * |
||
125 | * @param string $payload the payload to sign. |
||
126 | * @param string $secret the secret used to generate the signature. |
||
127 | * @return string the signature as a string. |
||
128 | */ |
||
129 | private static function computeSignature($payload, $secret) |
||
133 | } |
||
134 |