b7dbfb6f3e
6e48a1c: luks-edit: remove unnecessary 2>/dev/null 3f879a3: Avoid invalid message for clevis command e0e92f8: Fix typo in error messages 47b01ab: Improve boot performance by removing key check f5786d3: Notify error url on server connect fail f621575: luks: fix typo when adding a pending device 0589c14: luks: ignore empty & comment lines in crypttab 3bb852b: luks: define max entropy bits for pwmake Signed-off-by: Sergio Arroutbi <sarroutb@redhat.com>
18 lines
658 B
Diff
18 lines
658 B
Diff
--- clevis-18.0009/src/pins/tpm2/clevis-decrypt-tpm2 2021-04-15 13:00:19.969067600 +0200
|
|
+++ clevis-18/src/pins/tpm2/clevis-decrypt-tpm2 2022-12-16 12:22:51.788363059 +0100
|
|
@@ -99,12 +99,12 @@
|
|
fi
|
|
|
|
if ! jwk_pub="$(jose fmt -j- -Og clevis -g tpm2 -g jwk_pub -Su- <<< "$jhd")"; then
|
|
- echo "JWE missing required 'key' header parameter!" >&2
|
|
+ echo "JWE missing required 'jwk_pub' header parameter!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! jwk_priv="$(jose fmt -j- -Og clevis -g tpm2 -g jwk_priv -Su- <<< "$jhd")"; then
|
|
- echo "JWE missing required 'key' header parameter!" >&2
|
|
+ echo "JWE missing required 'jwk_priv' header parameter!" >&2
|
|
exit 1
|
|
fi
|
|
|