KickJava   Java API By Example, From Geeks To Geeks.

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

javax.crypto
Class ExemptionMechanism

java.lang.Object
  extended by javax.crypto.ExemptionMechanism
See Also:
Source Code

protected ExemptionMechanism(ExemptionMechanismSpi exmechSpi,
                             Provider provider,
                             String mechanism)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected void finalize()
See Also:
Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final byte[] genExemptionBlob()
                              throws IllegalStateException,
                                     ExemptionMechanismException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final int genExemptionBlob(byte[] output)
                           throws IllegalStateException,
                                  ShortBufferException,
                                  ExemptionMechanismException
See Also:
getOutputSize
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final int genExemptionBlob(byte[] output,
                                  int outputOffset)
                           throws IllegalStateException,
                                  ShortBufferException,
                                  ExemptionMechanismException
See Also:
getOutputSize
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final ExemptionMechanism getInstance(String algorithm)
                                            throws NoSuchAlgorithmException
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final ExemptionMechanism getInstance(String algorithm,
                                                   String provider)
                                            throws NoSuchAlgorithmException,
                                                   NoSuchProviderException
See Also:
IllegalArgumentException, NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final ExemptionMechanism getInstance(String algorithm,
                                                   Provider provider)
                                            throws NoSuchAlgorithmException
See Also:
IllegalArgumentException, NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public final int getOutputSize(int inputLen)
                        throws IllegalStateException
See Also:
genExemptionBlob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public final void init(Key key)
                throws InvalidKeyException,
                       ExemptionMechanismException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void init(Key key,
                       AlgorithmParameters params)
                throws InvalidKeyException,
                       InvalidAlgorithmParameterException,
                       ExemptionMechanismException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void init(Key key,
                       AlgorithmParameterSpec params)
                throws InvalidKeyException,
                       InvalidAlgorithmParameterException,
                       ExemptionMechanismException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final boolean isCryptoAllowed(Key key)
                              throws ExemptionMechanismException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags