The interface to a Diffie-Hellman public key. @see DHKey @see DHPrivateKey
| 10 | * @see DHPrivateKey |
| 11 | */ |
| 12 | public abstract interface DHPublicKey |
| 13 | extends DHKey, PublicKey |
| 14 | { |
| 15 | /** |
| 16 | * Returns the public value, <code>y</code>. |
| 17 | * |
| 18 | * @return the public value, <code>y</code> |
| 19 | */ |
| 20 | public BigInteger getY(); |
| 21 | } |
no outgoing calls
no test coverage detected