| java.lang.Object |
| ↳ |
com.google.code.com.sun.mail.auth.MD4 |
Class Overview
The MD4 class is used to compute an MD4 message digest over a given
buffer of bytes. It is an implementation of the RSA Data Security Inc
MD4 algorithim as described in internet RFC 1320.
Summary
| Public Constructors |
|
|
MD4()
|
| Public Methods |
|
byte[]
|
digest(byte[] in)
Compute and return the message digest of the input byte array.
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Constants
private
static
final
int
S11
Constant Value:
3
(0x00000003)
private
static
final
int
S12
Constant Value:
7
(0x00000007)
private
static
final
int
S13
Constant Value:
11
(0x0000000b)
private
static
final
int
S14
Constant Value:
19
(0x00000013)
private
static
final
int
S21
Constant Value:
3
(0x00000003)
private
static
final
int
S22
Constant Value:
5
(0x00000005)
private
static
final
int
S23
Constant Value:
9
(0x00000009)
private
static
final
int
S24
Constant Value:
13
(0x0000000d)
private
static
final
int
S31
Constant Value:
3
(0x00000003)
private
static
final
int
S32
Constant Value:
9
(0x00000009)
private
static
final
int
S33
Constant Value:
11
(0x0000000b)
private
static
final
int
S34
Constant Value:
15
(0x0000000f)
private
static
final
int
blockSize
Constant Value:
64
(0x00000040)
Fields
private
final
byte[]
buffer
private
long
bytesProcessed
private
static
final
byte[]
padding
private
final
int[]
state
Public Constructors
Public Methods
public
byte[]
digest
(byte[] in)
Compute and return the message digest of the input byte array.