InvalidKeException
class InvalidKeException : IkeProtocolException
This exception is thrown when the remote server expected a different Diffie-Hellman group.
This exception indicates that the remote server received a different KE payload in the Child creation request from accepted Diffie-Hellman group. Callers can retry Child creation by proposing the expected DH group included in this exception.
Summary
Inherited constants | |
---|---|
Public constructors | |
---|---|
InvalidKeException(dhGroup: Int) Construct an instance of InvalidKeException. |
Public methods | |
---|---|
Int |
Return the expected DH Group included in this exception. |
Inherited functions | |
---|---|
Public constructors
InvalidKeException
InvalidKeException(dhGroup: Int)
Construct an instance of InvalidKeException.
Except for testing, IKE library users normally do not instantiate this object themselves but instead get a reference via IkeSessionCallback
or ChildSessionCallback
.
Parameters | |
---|---|
dhGroup |
Int: the expected DH group |
Public methods
getDhGroup
fun getDhGroup(): Int
Return the expected DH Group included in this exception.
Return | |
---|---|
Int |
the expected DH Group. |