Hey

Looks like you are missing a "~" in the abnf for SD-JWT-KB

in section 4 a "~" separates the KB-JWT from the rest of the string:

<Issuer-signed JWT>~<Disclosure 1>~<Disclosure N>~<KB-JWT>


But in the last line of the abnf there is no "~" :

ALPHA = %x41-5A / %x61-7A ; A-Z / a-z
DIGIT = %x30-39 ; 0-9
BASE64URL = 1*(ALPHA / DIGIT / "-" / "_")
JWT = BASE64URL "." BASE64URL "." BASE64URL
DISCLOSURE = BASE64URL
SD-JWT = JWT "~" *[DISCLOSURE "~"]
KB-JWT = JWT
SD-JWT-KB = SD-JWT KB-JWT



I think the last line should be

SD-JWT-KB = SD-JWT "~" KB-JWT
_______________________________________________
OAuth mailing list -- oauth@ietf.org
To unsubscribe send an email to oauth-le...@ietf.org

Reply via email to