public abstract class AbstractDHKeyExchange extends AbstractLoggingBean implements KeyExchange
Modifier and Type | Field and Description |
---|---|
protected byte[] |
e |
protected byte[] |
f |
protected byte[] |
h |
protected Digest |
hash |
protected byte[] |
i_c |
protected byte[] |
i_s |
protected byte[] |
k |
private Session |
session |
protected byte[] |
v_c |
protected byte[] |
v_s |
log
GROUP_KEX_OPCODES_MAP, SIMPLE_KEX_OPCODES_MAP
BY_NAME_COMPARATOR, NAME_EXTRACTOR
Modifier | Constructor and Description |
---|---|
protected |
AbstractDHKeyExchange(Session session) |
Modifier and Type | Method and Description |
---|---|
byte[] |
getH()
Retrieves the computed
h parameter |
Digest |
getHash()
The message digest used by this key exchange algorithm.
|
byte[] |
getK()
Retrieves the computed k parameter
|
Session |
getSession() |
void |
init(byte[] v_s,
byte[] v_c,
byte[] i_s,
byte[] i_c)
Initialize the key exchange algorithm.
|
java.lang.String |
toString() |
getSimplifiedLogger
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getGroupKexOpcodeName, getServerKey, getSimpleKexOpcodeName, next
findByName, getName, getNameList, getNames, ofName, removeByName
getSessionContext
protected byte[] v_s
protected byte[] v_c
protected byte[] i_s
protected byte[] i_c
protected Digest hash
protected byte[] e
protected byte[] f
protected byte[] k
protected byte[] h
private final Session session
protected AbstractDHKeyExchange(Session session)
public void init(byte[] v_s, byte[] v_c, byte[] i_s, byte[] i_c) throws java.lang.Exception
KeyExchange
init
in interface KeyExchange
v_s
- the server identification stringv_c
- the client identification stringi_s
- the server key initialization packeti_c
- the client key initialization packetjava.lang.Exception
- if an error occurspublic Session getSession()
getSession
in interface SessionHolder<Session>
public Digest getHash()
KeyExchange
getHash
in interface KeyExchange
public byte[] getH()
KeyExchange
h
parametergetH
in interface KeyExchange
h
parameterpublic byte[] getK()
KeyExchange
getK
in interface KeyExchange
k
parameterpublic java.lang.String toString()
toString
in class java.lang.Object