Added in API level 1
    DHPrivateKey
interface DHPrivateKey : DHKey, PrivateKey
| javax.crypto.interfaces.DHPrivateKey | 
The interface to a Diffie-Hellman private key.
Summary
| Constants | |
|---|---|
| static Long | 
            
             The class fingerprint that is set to indicate serialization compatibility since J2SE 1.  | 
        
| Public methods | |
|---|---|
| abstract BigInteger! | 
            getX()Returns the private value,   | 
        
| Inherited functions | |
|---|---|
Constants
serialVersionUID
Added in API level 1
      static val serialVersionUID: Long
The class fingerprint that is set to indicate serialization compatibility since J2SE 1.4.
Value: 2211791113380396553LPublic methods
getX
Added in API level 1
      abstract fun getX(): BigInteger!
Returns the private value, x.
| Return | |
|---|---|
BigInteger! | 
            the private value, x |