KickJava   Java API By Example, From Geeks To Geeks.

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

javax.crypto
Class Mac

java.lang.Object
  extended by javax.crypto.Mac
All Implemented Interfaces:
Cloneable
See Also:
Top Examples, Source Code

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


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


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


public final void doFinal(byte[] output,
                          int outOffset)
                   throws ShortBufferException,
                          IllegalStateException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


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


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


public final int getMacLength()
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
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


protected Mac(MacSpi macSpi,
              Provider provider,
              String algorithm)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public final void update(byte input)
                  throws IllegalStateException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public final void update(byte[] input,
                         int offset,
                         int len)
                  throws IllegalStateException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void update(ByteBuffer input)
See Also:
IllegalStateException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags