1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Add support for OAuth 2.0 Demonstrating Proof of Possession (DPoP)

Signed-off-by: Joe Grandja <10884212+jgrandja@users.noreply.github.com>
This commit is contained in:
Joe Grandja
2025-02-11 13:50:57 -05:00
parent 27cb1154f2
commit 2480d41981
10 changed files with 1923 additions and 2 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -139,6 +139,15 @@ public final class OAuth2ErrorCodes {
*/
public static final String INVALID_REDIRECT_URI = "invalid_redirect_uri";
/**
* {@code invalid_dpop_proof} - The DPoP Proof JWT is invalid.
*
* @since 6.5
* @see <a href="https://datatracker.ietf.org/doc/html/rfc9449">RFC-9449 - OAuth 2.0
* Demonstrating Proof of Possession (DPoP)</a>
*/
public static final String INVALID_DPOP_PROOF = "invalid_dpop_proof";
private OAuth2ErrorCodes() {
}