David Ostrovsky created SSHD-336:
------------------------------------
Summary: Allow ECDSA based public key authentication
Key: SSHD-336
URL: https://issues.apache.org/jira/browse/SSHD-336
Project: MINA SSHD
Issue Type: Bug
Affects Versions: 0.12.0
Reporter: David Ostrovsky
Public key authentication with ECDSA keys is currently rejected because
Signature factories only honors RSA or DSS based public key lookup. So
registering the corresponding actories has no effect: [1].
{code}
private void initSignatures() {
setSignatureFactories(Arrays.<NamedFactory<Signature>> asList(
new SignatureDSA.Factory(),
new SignatureRSA.Factory(),
new SignatureECDSA.NISTP256Factory(),
new SignatureECDSA.NISTP384Factory(),
new SignatureECDSA.NISTP521Factory()));
}
{code}
[1] https://gerrit-review.googlesource.com/59351
--
This message was sent by Atlassian JIRA
(v6.2#6252)