Package javacard.security
Interface DSAPublicKey
-
public interface DSAPublicKey extends PublicKey, DSAKey
TheDSAPublicKeyinterface is used to verify signatures on signed data using the DSA algorithm. An implementation ofDSAPublicKeyinterface must also implement theDSAKeyinterface methods.When all four components of the key (Y,P,Q,G) are set, the key is initialized and ready for use.
- See Also:
DSAPrivateKey,KeyBuilder,Signature,javacardx.crypto.KeyEncryption
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description shortgetY(byte[] buffer, short offset)Returns the value of the key in plain text.voidsetY(byte[] buffer, short offset, short length)Sets the value of the key.-
Methods inherited from interface javacard.security.Key
clearKey, getSize, getType, isInitialized
-
-
-
-
Method Detail
-
setY
void setY(byte[] buffer, short offset, short length) throws CryptoExceptionSets the value of the key. When the base, prime and subprime parameters are initialized and the key value is set, the key is ready for use. The plain text data format is big-endian and right-aligned (the least significant bit is the least significant bit of last byte). Input key data is copied into the internal representation.Note:
- If the key object implements the
javacardx.crypto.KeyEncryptioninterface and theCipherobject specified viasetKeyCipher()is notnull, the key value is decrypted using theCipherobject.
- Parameters:
buffer- the input bufferoffset- the offset into the input buffer at which the key value beginslength- the length of the key value- Throws:
CryptoException- with the following reason code:CryptoException.ILLEGAL_VALUEif the input key data length is inconsistent with the implementation or if input data decryption is required and fails.
- If the key object implements the
-
getY
short getY(byte[] buffer, short offset)Returns the value of the key in plain text. The data format is big-endian and right-aligned (the least significant bit is the least significant bit of last byte).- Parameters:
buffer- the output bufferoffset- the offset into the input buffer at which the key value starts- Returns:
- the byte length of the key value returned
- Throws:
CryptoException- with the following reason code:CryptoException.UNINITIALIZED_KEYif the value of the key has not been successfully initialized since the time the initialized state of the key was set to false.
- See Also:
Key
-
-