DSAPublicKey
  public
  
  
  
  interface
  DSAPublicKey
  
  
      implements
      
        DSAKey, 
      
        PublicKey
      
  
  
| java.security.interfaces.DSAPublicKey | 
The interface to a DSA public key. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.
See also:
Summary
Constants | |
|---|---|
long | 
        
          serialVersionUID
          
      This constant was deprecated
      in API level 35.
    A   | 
    
Inherited constants | 
|---|
Public methods | |
|---|---|
        abstract
        
        
        
        
        BigInteger
     | 
  
    
      
      getY()
      
      
        Returns the value of the public key,   | 
  
Inherited methods | |
|---|---|
Constants
serialVersionUID
public static final long serialVersionUID
      This constant was deprecated
      in API level 35.
    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.
Constant Value: 1234526332779022332 (0x1121eb28ab28c7fc)
Public methods
getY
public abstract BigInteger getY ()
Returns the value of the public key, y.
| Returns | |
|---|---|
BigInteger | 
        the value of the public key, y. |