DSAParams


DSAParams java.security.interfaces

Java 1.1

This interface defines methods for obtaining the DSA parameters g , p , and q . These methods are useful only if you wish to perform cryptographic computation yourself. Using these methods requires a detailed understanding of the mathematics underlying DSA public-key cryptography.

 public interface  DSAParams  {  // Public Instance Methods  java.math.BigInteger  getG  ( );        java.math.BigInteger  getP  ( );        java.math.BigInteger  getQ  ( );   } 

Implementations

java.security.spec.DSAParameterSpec

Passed To

DSAKeyPairGenerator.initialize( )

Returned By

DSAKey.getParams( )



Java In A Nutshell
Java In A Nutshell, 5th Edition
ISBN: 0596007736
EAN: 2147483647
Year: 2004
Pages: 1220

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net