Added in API level 1
    DSAPublicKey
interface DSAPublicKey : DSAKey, PublicKey
| java.security.interfaces.DSAPublicKey | 
The interface to a DSA public key. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.
Summary
| Constants | |
|---|---|
| static Long | 
            
             The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.  | 
        
| Public methods | |
|---|---|
| abstract BigInteger! | 
            getY()Returns the value of the public key,   | 
        
| Inherited functions | |
|---|---|
Constants
serialVersionUID
static valserialVersionUID: Long
Deprecated: A serialVersionUID field in an interface is ineffectual. Do not use; no replacement.
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
Value: 1234526332779022332LPublic methods
getY
Added in API level 1
      abstract fun getY(): BigInteger!
Returns the value of the public key, y.
| Return | |
|---|---|
BigInteger! | 
            the value of the public key, y. |