| .. | |||||
| client-authenticator.php | |||||
| encryption-exception.php | |||||
| icon-redirect-manager.svg | |||||
| jwt-signature-exception.php | |||||
| jwt-signer.php | |||||
| jwt-signing-exception.php | |||||
| jwt-validation-exception.php | |||||
| key-pair.php |
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\MyYoast_Client\Infrastructure\Crypto;
use RuntimeException;
/**
* Exception thrown when JWT signature verification fails.
*
* Covers invalid signatures, malformed JWTs, and tampered tokens.
*/
class JWT_Signature_Exception extends RuntimeException {
}
| .. | |||||
| client-authenticator.php | |||||
| encryption-exception.php | |||||
| icon-redirect-manager.svg | |||||
| jwt-signature-exception.php | |||||
| jwt-signer.php | |||||
| jwt-signing-exception.php | |||||
| jwt-validation-exception.php | |||||
| key-pair.php |