imgtool: Discard public RSA if set for signing
If imgtool is used for signing with encryption
it will disallow using public RSA key for
signing.
Signed-off-by: Chris Bittner <chris.bittner@nordicsemi.no>
diff --git a/scripts/imgtool/main.py b/scripts/imgtool/main.py
index a03a164..96f4386 100755
--- a/scripts/imgtool/main.py
+++ b/scripts/imgtool/main.py
@@ -156,9 +156,9 @@
enckey = load_key(encrypt) if encrypt else None
if enckey:
if not isinstance(enckey, (keys.RSA2048, keys.RSA2048Public)):
- raise Exception("Encryption only available with RSA")
- if key and not isinstance(key, (keys.RSA2048, keys.RSA2048Public)):
- raise Exception("Encryption with sign only available with RSA")
+ raise Exception("Encryption only available with RSA key")
+ if key and not isinstance(key, keys.RSA2048):
+ raise Exception("Signing only available with private RSA key")
img.create(key, enckey)
img.save(outfile)