josep! runs jose without json parsing the output
This commit is contained in:
parent
41733e58d6
commit
74093b7ee3
@ -39,8 +39,20 @@
|
|||||||
(error (%% "jose %q failed (exit=%d): %q"
|
(error (%% "jose %q failed (exit=%d): %q"
|
||||||
(table.concat params " ") exitcode out)))))
|
(table.concat params " ") exitcode out)))))
|
||||||
|
|
||||||
|
(fn josep! [params inputstr]
|
||||||
|
(let [(exitcode out) (jose params inputstr)]
|
||||||
|
(if (= exitcode 0)
|
||||||
|
out
|
||||||
|
(error (%% "jose %q failed (exit=%d): %q"
|
||||||
|
(table.concat params " ") exitcode out)))))
|
||||||
|
|
||||||
(fn has-key? [keys kid alg]
|
(fn has-key? [keys kid alg]
|
||||||
(jose! ["jose" "jwk" "thp" "-i-" "-f" kid "-a" alg] (json.encode keys)))
|
(jose! ["jose" "jwk" "thp" "-i-" "-f" kid "-a" alg] (json.encode keys)))
|
||||||
|
(fn search-key [keys kid]
|
||||||
|
(accumulate [ret nil
|
||||||
|
_ alg (ipairs thumbprint-algs)
|
||||||
|
&until ret]
|
||||||
|
(or ret (has-key? keys kid alg))))
|
||||||
|
|
||||||
(fn jwk-generate [crv]
|
(fn jwk-generate [crv]
|
||||||
(jose! ["jose" "jwk" "gen" "-i" (%% "{\"alg\":\"ECMR\",\"crv\":%q}" crv)] ""))
|
(jose! ["jose" "jwk" "gen" "-i" (%% "{\"alg\":\"ECMR\",\"crv\":%q}" crv)] ""))
|
||||||
@ -57,22 +69,15 @@
|
|||||||
(.. (json.encode clt) " " (json.encode eph))))
|
(.. (json.encode clt) " " (json.encode eph))))
|
||||||
|
|
||||||
(fn jwe-dec [jwk ph undigested]
|
(fn jwe-dec [jwk ph undigested]
|
||||||
(let [(exitcode plaintext)
|
(josep! [ "jwe" "dec" "-k-" "-i-"]
|
||||||
(jose ["jose" "jwe" "dec" "-k-" "-i-"]
|
(.. (json.encode jwk) ph "." undigested)))
|
||||||
(.. (json.encode jwk) ph "." undigested))]
|
|
||||||
(if (= exitcode 0)
|
|
||||||
plaintext
|
|
||||||
(error (.. "Error calling jwe dec: " exitcode " / " plaintext )))))
|
|
||||||
|
|
||||||
(fn parse-jwe [jwe]
|
(fn parse-jwe [jwe]
|
||||||
(assert (= jwe.clevis.pin "tang") "invalid clevis.pin")
|
(assert (= jwe.clevis.pin "tang") "invalid clevis.pin")
|
||||||
(assert jwe.clevis.tang.adv "no advertised keys")
|
(assert jwe.clevis.tang.adv "no advertised keys")
|
||||||
(assert (>= (# jwe.kid) CLEVIS_DEFAULT_THP_LEN)
|
(assert (>= (# jwe.kid) CLEVIS_DEFAULT_THP_LEN)
|
||||||
"tang using a deprecated hash for the JWK thumbprints")
|
"tang using a deprecated hash for the JWK thumbprints")
|
||||||
(let [srv (accumulate [ret nil
|
(let [srv (search-key jwe.clevis.tang.adv jwe.kid)]
|
||||||
_ alg (ipairs thumbprint-algs)
|
|
||||||
&until ret]
|
|
||||||
(or ret (has-key? jwe.clevis.tang.adv jwe.kid alg)))]
|
|
||||||
{
|
{
|
||||||
:kid jwe.kid
|
:kid jwe.kid
|
||||||
:clt (assert jwe.epk)
|
:clt (assert jwe.epk)
|
||||||
|
Loading…
Reference in New Issue
Block a user