aboutsummaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2013-10-06 10:10:14 -0700
committerKenny Root <kenny@the-b.org>2013-10-06 10:11:56 -0700
commit4b5368fe23e5a4f72e6136c890431aa7960e28e5 (patch)
tree9cc205aae2d37c76335bee2c9dcb5eaecf5b1e58 /src/com
parent2f4da82b29f41a2fbc9669ff4852a8160bb7a6a7 (diff)
downloadconnectbot-4b5368fe23e5a4f72e6136c890431aa7960e28e5.tar.gz
connectbot-4b5368fe23e5a4f72e6136c890431aa7960e28e5.tar.bz2
connectbot-4b5368fe23e5a4f72e6136c890431aa7960e28e5.zip
Fix exception message in ECDSASHA2Verify
Change-Id: Ib69c29588acb60b94cf710244f4c4dc76534412f
Diffstat (limited to 'src/com')
-rw-r--r--src/com/trilead/ssh2/signature/ECDSASHA2Verify.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/trilead/ssh2/signature/ECDSASHA2Verify.java b/src/com/trilead/ssh2/signature/ECDSASHA2Verify.java
index 49028e6..f139cdf 100644
--- a/src/com/trilead/ssh2/signature/ECDSASHA2Verify.java
+++ b/src/com/trilead/ssh2/signature/ECDSASHA2Verify.java
@@ -118,11 +118,11 @@ public class ECDSASHA2Verify {
KeyFactory kf = KeyFactory.getInstance("EC");
return (ECPublicKey) kf.generatePublic(keySpec);
} catch (NoSuchAlgorithmException nsae) {
- IOException ioe = new IOException("No RSA KeyFactory available");
+ IOException ioe = new IOException("No EC KeyFactory available");
ioe.initCause(nsae);
throw ioe;
} catch (InvalidKeySpecException ikse) {
- IOException ioe = new IOException("No RSA KeyFactory available");
+ IOException ioe = new IOException("No EC KeyFactory available");
ioe.initCause(ikse);
throw ioe;
}