KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > crypto > KeyAgreementSpi

javax.crypto
Class KeyAgreementSpi

java.lang.Object
  extended by javax.crypto.KeyAgreementSpi
See Also:
Source Code, KeyGenerator, SecretKey

protected abstract Key engineDoPhase(Key key,
                                     boolean lastPhase)
                              throws InvalidKeyException,
                                     IllegalStateException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


protected abstract int engineGenerateSecret(byte[] sharedSecret,
                                            int offset)
                                     throws IllegalStateException,
                                            ShortBufferException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract SecretKey engineGenerateSecret(String algorithm)
                                           throws IllegalStateException,
                                                  NoSuchAlgorithmException,
                                                  InvalidKeyException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void engineInit(Key key,
                                   SecureRandom random)
                            throws InvalidKeyException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract void engineInit(Key key,
                                   AlgorithmParameterSpec params,
                                   SecureRandom random)
                            throws InvalidKeyException,
                                   InvalidAlgorithmParameterException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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

Popular Tags