comparison src/ch/ethz/ssh2/crypto/dh/DhGroupExchange.java @ 313:1d400fd78e4a ganymed

add ecdsa key support everywhere
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 16:19:33 -0700
parents 1442be38051b
children
comparison
equal deleted inserted replaced
312:1442be38051b 313:1d400fd78e4a
1 1
2 package ch.ethz.ssh2.crypto.dh; 2 package ch.ethz.ssh2.crypto.dh;
3 3
4 import java.math.BigInteger; 4 import java.math.BigInteger;
5 import java.security.SecureRandom; 5 import java.security.SecureRandom;
6 import java.io.IOException;
6 7
7 import ch.ethz.ssh2.DHGexParameters; 8 import ch.ethz.ssh2.DHGexParameters;
8 import ch.ethz.ssh2.crypto.digest.HashForSSH2Types; 9 import ch.ethz.ssh2.crypto.digest.HashForSSH2Types;
9 10
10 11