diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/com/trilead/ssh2/signature/ECDSASHA2Verify.java | 4 |
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; } |