mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.jwt: Import definition of key from util.crypto
Turns out we had a definition of that already
This commit is contained in:
parent
7623bc24de
commit
b64d6afeab
1 changed files with 2 additions and 4 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
local crypto = require "util.crypto"
|
||||||
local record jwtlib
|
local record jwtlib
|
||||||
enum algorithm
|
enum algorithm
|
||||||
"HS256"
|
"HS256"
|
||||||
|
@ -19,13 +20,10 @@ local record jwtlib
|
||||||
"rsaEncryption"
|
"rsaEncryption"
|
||||||
"id-ecPublicKey"
|
"id-ecPublicKey"
|
||||||
end
|
end
|
||||||
record key_t
|
|
||||||
get_type : function (key_t) : key_type
|
|
||||||
end
|
|
||||||
record algorithm_t
|
record algorithm_t
|
||||||
sign : signer_t
|
sign : signer_t
|
||||||
verify : verifier_t
|
verify : verifier_t
|
||||||
load_key : function (key : string) : key_t
|
load_key : function (key : string) : crypto.key
|
||||||
end
|
end
|
||||||
init : function (algorithm, private_key : string, public_key : string, table) : signer_t, verifier_t
|
init : function (algorithm, private_key : string, public_key : string, table) : signer_t, verifier_t
|
||||||
new_signer : function (algorithm, string, table) : signer_t
|
new_signer : function (algorithm, string, table) : signer_t
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue