aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/main/java/com/trilead/ssh2/signature/ECDSASHA2Verify.java
Commit message (Collapse)AuthorAgeFilesLines
* Change MessageDigest algorithms to standard nameKenny Root2015-06-091-3/+3
| | | | | | | These message digests need a hyphen according to https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#MessageDigest Fixes #87
* ECDH there should be no negative bigintKenny Root2015-04-051-2/+2
| | | | | | | | | Since the hash is over the canonical values of the agreed parameters when the shared secret was encoded as a negative biginteger, the two sides didn't agree. Make sure this doesn't occur by setting the bigint signum to 1. Change-Id: Ib0581cd7dc280dcce8cc3309d7102f8f5a444158
* Fix exception message in ECDSASHA2VerifyKenny Root2013-10-061-2/+2
| | | | Change-Id: Ib69c29588acb60b94cf710244f4c4dc76534412f
* Partial support for importing EC keysKenny Root2013-04-131-0/+17
|
* Add EC pubkey to UIKenny Root2013-04-121-5/+32
|
* Fix bug in EC point encodingKenny Root2013-04-111-2/+3
|
* Add ECDH supportKenny Root2013-04-101-4/+30
| | | | | | | | Add support for the ECDH methods required by RFC 5656 ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521
* Add support for ECDSA P-384 and P-521Kenny Root2013-02-061-26/+148
|
* Add ECDSA supportKenny Root2013-02-041-0/+294