Class NTLMEngine.HMACMD5

java.lang.Object
org.tmatesoft.svn.core.internal.io.dav.http.NTLMEngine.HMACMD5
Enclosing class:
NTLMEngine

static class NTLMEngine.HMACMD5 extends java.lang.Object
Cryptography support - HMACMD5 - algorithmically based on various web resources by Karl Wright
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected byte[]
     
    protected java.security.MessageDigest
     
    protected byte[]
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    HMACMD5(byte[] input)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (package private) byte[]
    Grab the current digest.
    (package private) void
    update(byte[] input)
    Update by adding a complete array
    (package private) void
    update(byte[] input, int offset, int length)
    Update the algorithm

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • ipad

      protected byte[] ipad
    • opad

      protected byte[] opad
    • md5

      protected java.security.MessageDigest md5
  • Constructor Details

  • Method Details

    • getOutput

      byte[] getOutput()
      Grab the current digest. This is the "answer".
    • update

      void update(byte[] input)
      Update by adding a complete array
    • update

      void update(byte[] input, int offset, int length)
      Update the algorithm