is Dpop
Determine whether this Authorization header value is using the DPoP scheme.
Usage example: val auth = request.getHeader("Authorization") if (auth?.isDpop() == true) { /* handle DPoP-bound token */ }
Receiver
The Authorization header value (e.g., "DPoP eyJ..." or "Bearer eyJ...")
Return
true if the string starts with "DPoP ", false otherwise.