Interface Digest

All Known Implementing Classes:
BaseDigest, MD5, SHA1, SHA256, SHA384, SHA512

public interface Digest
Interface used to compute digests, based on algorithms such as MD5 or SHA1.
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
     
    int
     
    void
     
    void
    update(byte[] foo)
     
    void
    update(byte[] foo, int start, int len)
     
  • Method Details

    • digest

      byte[] digest()
    • getBlockSize

      int getBlockSize()
    • init

      void init()
    • update

      void update(byte[] foo)
    • update

      void update(byte[] foo, int start, int len)