Class NTLMEngineImpl.MD4
java.lang.Object
org.apache.hc.client5.http.impl.auth.NTLMEngineImpl.MD4
- Enclosing class:
NTLMEngineImpl
Cryptography support - MD4. The following class was based loosely on the
RFC and on code found at http://www.cs.umd.edu/~harry/jotp/src/md.java.
Code correctness was verified by looking at MD4.java from the jcifs
library (http://jcifs.samba.org). It was massaged extensively to the
final form found here by Karl Wright (kwright@metacarta.com).
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
A
int A -
B
int B -
C
int C -
D
int D -
count
long count -
dataBuffer
final byte[] dataBuffer
-
-
Constructor Details
-
MD4
MD4()
-
-
Method Details
-
update
void update(byte[] input) -
getOutput
byte[] getOutput() -
processBuffer
void processBuffer() -
round1
void round1(int[] d) -
round2
void round2(int[] d) -
round3
void round3(int[] d)
-