com.ibm.crypto.pkcs11impl.provider
Interface PKCS11DSAPublicKey
-
- All Superinterfaces:
- java.security.interfaces.DSAKey, java.security.interfaces.DSAPublicKey, java.security.Key, com.ibm.pkcs11.P11Key, PKCS11Key, PKCS11PublicKey, java.security.PublicKey, java.io.Serializable
- All Known Implementing Classes:
- DSAPublicKey
public interface PKCS11DSAPublicKey extends PKCS11PublicKey, java.security.interfaces.DSAPublicKey
Contains the basic things needed for a PKCS 11 DSA public key. It is a subclass of PKCS11PublicKey.
-
-
Field Summary
Fields Modifier and Type Field and Description static longserialVersionUID
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description java.math.BigIntegergetBase()Returns the basejava.math.BigIntegergetPrime()Returns the prime.java.math.BigIntegergetSubprime()Returns the subprimejava.math.BigIntegergetValue()Returns the value-
Methods inherited from interface com.ibm.crypto.pkcs11impl.provider.PKCS11PublicKey
getEncrypt, getSubject, getVerify, getVerifyRecover, getWrap
-
Methods inherited from interface com.ibm.crypto.pkcs11impl.provider.PKCS11Key
getDerive, getEndDate, getID, getKeyType, getLabel, getLocal, getModifiable, getObject, getPrivate, getSessionManager, getStartDate, getToken, rm
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPrime
java.math.BigInteger getPrime()
Returns the prime.- Returns:
- the prime p.
-
getSubprime
java.math.BigInteger getSubprime()
Returns the subprime- Returns:
- the subprime q (160-bits)
-
getBase
java.math.BigInteger getBase()
Returns the base- Returns:
- the base g
-
getValue
java.math.BigInteger getValue()
Returns the value- Returns:
- the public value y
-
-