Interface java.security.spec.AlgorithmParameterSpec | ||
|
||
public interface java.security.spec.AlgorithmParameterSpec { }
See also: DSAParameterSpec, KeyFactory
Class java.security.spec.DSAParameterSpec | ||
|
||
public class java.security.spec.DSAParameterSpec extends java.lang.Object implements java.security.spec.AlgorithmParameterSpec, java.security.interfaces.DSAParams { // Constructors public DSAParameterSpec(BigInteger, BigInteger, BigInteger); // Instance Methods public BigInteger getG(); public BigInteger getP(); public BigInteger getQ(); }
See also: AlgorithmParameterSpec, DSAParams, DSAPrivateKeySpec, DSAPublicKeySpec
Class java.security.spec.DSAPrivateKeySpec | ||
|
||
public class java.security.spec.DSAPrivateKeySpec extends java.lang.Object implements java.security.spec.KeySpec { // Constructors public DSAPrivateKeySpec(BigInteger, BigInteger, BigInteger, BigInteger); // Instance Methods public BigInteger getG(); public BigInteger getP(); public BigInteger getQ(); public BigInteger getX(); }
See also: DSAPublicKeySpec, KeyFactory
Class java.security.spec.DSAPublicKeySpec | ||
|
||
public class java.security.spec.DSAPublicKeySpec extends java.lang.Object implements java.security.spec.KeySpec { // Constructors public DSAPublicKeySpec(BigInteger, BigInteger, BigInteger, BigInteger); // Instance Methods public BigInteger getG(); public BigInteger getP(); public BigInteger getQ(); public BigInteger getY(); }
See also: DSAPrivateKeySpec, KeyFactory
Class java.security.spec.EncodedKeySpec | ||
|
||
public abstract class java.security.spec.EncodedKeySpec extends java.lang.Object implements java.security.spec.KeySpec { // Constructors public EncodedKeySpec(); // Instance Methods public abstract byte[] getEncoded(); public abstract String getFormat(); }
See also: KeyFactory, KeySpec, PKCS8EncodedKeySpec, X509EncodedKeySpec
Interface java.security.spec.KeySpec | ||
|
||
public abstract interface java.security.spec.KeySpec { }
See also: AlgorithmParameterSpec, EncodedKeySpec, KeyFactory
Class java.security.spec.PKCS8EncodedKeySpec | ||
|
||
public class java.security.spec.PKCS8EncodedKeySpec extends java.security.spec.EncodedKeySpec { // Constructors public PKCS8EncodedKeySpec(byte[]); // Instance Methods public byte[] getEncoded(); public final String getFormat(); }
See also: EncodedKeySpec, X509EncodedKeySpec
Class java.security.spec.RSAPrivateKeySpec | ||
|
||
public java.security.spec.RSAPrivateKeySpec extends java.lang.Object implements java.security.spec.KeySpec { // Constructors public RSAPrivateKeySpec(BigInteger, BigInteger); // Instance Methods public BigInteger getModulus(); public BigInteger getPrivateExponent(); }
See also: KeyFactory, KeySpec, PrivateKey
Class java.security.spec.RSAPublicKeySpec | ||
|
||
public java.security.spec.RSAPublicKeySpec extends java.lang.Object implements java.security.spec.KeySpec { // Constructors public RSAPublicKeySpec(BigInteger, BigInteger); // Instance Methods public BigInteger getModulus(); public BigInteger getPublicExponent(); }
See also: KeyFactory, KeySpec, PublicKey
Class java.security.spec.X509EncodedKeySpec | ||
|
||
public class java.security.spec.X509EncodedKeySpec extends java.security.spec.EncodedKeySpec { // Constructors public X509EncodedKeySpec(byte[]); // Instance Methods public byte[] getEncoded(); public final String getFormat(); }
Copyright © 2001 O'Reilly & Associates. All rights reserved.