util.jwt: Fixup argument and type order

This commit is contained in:
Kim Alvefur 2023-03-10 13:58:14 +01:00
parent c425da3c6a
commit 7623bc24de

View file

@ -34,7 +34,7 @@ local record jwtlib
algorithm : algorithm_t
}
-- Deprecated
sign : function (string : key, payload) : string
sign : function (private_key : string, payload) : string
verify : function (string) : payload
end
return jwtlib