Interface Mac

All Known Implementing Classes:
BCMac, HmacT64, JceMac

public interface Mac
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
     
    void
    init(byte[] key)
     
    void
     
    void
    update(byte b)
     
    void
    update(byte[] array)
     
    void
    update(byte[] array, int offset, int length)
     
  • Method Details

    • init

      void init(byte[] key) throws SecurityException
      Throws:
      SecurityException
    • update

      void update(byte b)
    • update

      void update(byte[] array)
    • update

      void update(byte[] array, int offset, int length)
    • doFinal

      byte[] doFinal()
    • reset

      void reset()