forked from dan/liminix
tangc handle non-zero exit from jwe dec
Sometimes it exits non-zero but decrypts the file *anyway*. It only does this on the device and I haven't been able to reproduce on build, so this is a workaround until we find the root cause
This commit is contained in:
parent
e590c0ad3f
commit
034d6aacc4
@ -75,8 +75,15 @@
|
||||
(.. (json.encode clt) " " (json.encode eph))))
|
||||
|
||||
(fn jwe-dec [jwk ph undigested]
|
||||
(josep! ["jwe" "dec" "-k-" "-i-"]
|
||||
(.. (json.encode jwk) ph "." undigested)))
|
||||
;; sometimes jose jwe dec decrypts the file and exits
|
||||
;; non-zero anyway. FIXME find out why
|
||||
(let [inputstr (.. (json.encode jwk) ph "." undigested)
|
||||
(exitcode out) (jose ["jwe" "dec" "-k-" "-i-"] inputstr)]
|
||||
(if (> exitcode 0)
|
||||
(: io.stderr :write (%% "jose jwe dec exited %d\n" exitcode)))
|
||||
(if (not (= out ""))
|
||||
out
|
||||
(error (%% "jose jwe dec produced no output, exited %d" exitcode)))))
|
||||
|
||||
(fn parse-jwe [jwe]
|
||||
(assert (= jwe.clevis.pin "tang") "invalid clevis.pin")
|
||||
|
Loading…
Reference in New Issue
Block a user