KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > security > SignatureSpi

java.security
Class SignatureSpi

java.lang.Object
  extended by java.security.SignatureSpi
Direct Known Subclasses:
Signature
See Also:
Source Code

protected SecureRandom appRandom
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object clone()
             throws CloneNotSupportedException
See Also:
Cloneable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


@Deprecated
protected abstract Object engineGetParameter(String param)
                                      throws InvalidParameterException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected AlgorithmParameters engineGetParameters()
See Also:
UnsupportedOperationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void engineInitSign(PrivateKey privateKey)
                                throws InvalidKeyException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void engineInitSign(PrivateKey privateKey,
                              SecureRandom random)
                       throws InvalidKeyException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void engineInitVerify(PublicKey publicKey)
                                  throws InvalidKeyException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


@Deprecated
protected abstract void engineSetParameter(String param,
                                                      Object value)
                                    throws InvalidParameterException
See Also:
engineSetParameter
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void engineSetParameter(AlgorithmParameterSpec params)
                           throws InvalidAlgorithmParameterException
See Also:
UnsupportedOperationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract byte[] engineSign()
                              throws SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected int engineSign(byte[] outbuf,
                         int offset,
                         int len)
                  throws SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void engineUpdate(byte b)
                              throws SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void engineUpdate(byte[] b,
                                     int off,
                                     int len)
                              throws SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void engineUpdate(ByteBuffer input)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract boolean engineVerify(byte[] sigBytes)
                                 throws SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected boolean engineVerify(byte[] sigBytes,
                               int offset,
                               int length)
                        throws SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SignatureSpi()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags