- decode
JSONValue decode(string token, string delegate(ref JSONValue jose) lazyKey)
full version where the key is provided after decoding the JOSE header
- decode
JSONValue decode(string token, string key)
simple version that knows which key was used to encode the token
- encode
string encode(string[string] payload, string key, JwtAlgorithm algo, string[string] header_fields)
simple version that accepts only strings as values for payload and header fields
- encode
string encode(JSONValue payload, string key, JwtAlgorithm algo, JSONValue header_fields)
full version that accepts JSONValue tree as payload and header fields
- encode
string encode(ubyte[] payload, string key, JwtAlgorithm algo, JSONValue header_fields)
full version that accepts ubyte[] as payload and JSONValue tree as header fields
- encode
string encode(string payload, string key, JwtAlgorithm algo, string header_fields)
Undocumented in source. Be warned that the author may not have intended to support it.