for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Lukáš Unger <[email protected]>
* @copyright Copyright (c) Lukáš Unger
* @license http://mit-license.org/
*
* @link https://github.com/thephpleague/oauth2-server
*/
declare(strict_types=1);
namespace League\OAuth2\Server\CodeChallengeVerifiers;
use function base64_encode;
use function hash;
use function hash_equals;
use function rtrim;
use function strtr;
class S256Verifier implements CodeChallengeVerifierInterface
{
* Return code challenge method.
public function getMethod(): string
return 'S256';
}
* Verify the code challenge.
public function verifyCodeChallenge(string $codeVerifier, string $codeChallenge): bool
return hash_equals(
strtr(rtrim(base64_encode(hash('sha256', $codeVerifier, true)), '='), '+/', '-_'),
$codeChallenge
);