Interface java.security.interfaces.DSAKey | ||
|
||
public interface java.security.interfaces.DSAKey { // Instance Methods public DSAParams getParams(); }
See also: PrivateKey, PublicKey
Interface java.security.interfaces.DSAKeyPairGenerator | ||
|
||
public interface java.security.interfaces.DSAKeyPairGenerator { // Instance Methods public void initialize(DSAParams, SecureRandom); public void initialize(int, boolean, SecureRandom); }
See also: KeyPairGenerator
Interface java.security.interfaces.DSAParams | ||
|
||
public interface java.security.interfaces.DSAParams { // Instance Methods public BigInteger getP(); public BigInteger getQ(); public BigInteger getG(); }
See also: DSAPrivateKey, DSAPublicKey
Interface java.security.interfaces.DSAPrivateKey | ||
|
||
public interface java.security.interfaces.DSAPrivateKey { // Instance Methods public BigInteger getX(); }
See also: DSAParams, DSAPublicKey
Interface java.security.interfaces.DSAPublicKey | ||
|
||
public interface java.security.interfaces.DSAPublicKey { // Instance Methods public BigInteger getY(); }
Interface java.security.interfaces.RSAPrivateKey | ||
|
||
public abstract interface java.security.interfaces.RSAPrivateKey implements java.security.PrivateKey { // Instance Methods public abstract BigInteger getModulus(); public abstract BigInteger getPrivateExponent(); }
See also: PrivateKey, RSAPublicKey
Interface java.security.interfaces.RSAPublicKey | ||
|
||
public abstract interface java.security.interfaces.RSAPublicKey implements java.security.PublicKey { // Instance Methods public abstract BigInteger getModulus(); public abstract BigInteger getPublicExponent(); }
See also: PublicKey, RSAPrivateKey
Copyright © 2001 O'Reilly & Associates. All rights reserved.