Class DigestMaker


  • public class DigestMaker
    extends java.lang.Object
    A wrapper around the Java cryptography classes to make a SHA-256 digest.

    This exists so that a common API can be implemented in Java and C#.

    • Constructor Summary

      Constructors 
      Constructor Description
      DigestMaker()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDigest()  
      void update​(int value)  
      void update​(java.lang.String value)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DigestMaker

        public DigestMaker()
    • Method Detail

      • update

        public void update​(int value)
      • update

        public void update​(java.lang.String value)
      • getDigest

        public java.lang.String getDigest()