Open
Description
What would you like to see added?
Hello, current API seems to support only JWS in JWS Compact Serialization format (pls check https://datatracker.ietf.org/doc/html/rfc7515#section-7.1), any support for Flattened JWS JSON format can be provided? or we need to build the token by parsing the JSON format and extracting the protected header content, payload and signature fields?
Additional Context
Once the JSON is parsed to build the token with the formula:
BASE64URL(UTF8(JWS Protected Header)) || '.' ||
BASE64URL(JWS Payload) || '.' ||
BASE64URL(JWS Signature)