Java.Security.MessageDigest: Method Members

The methods of Java.Security.MessageDigest are listed below. For a list of all members, see the MessageDigest Members list.

See Also: Inherited members from Java.Security.MessageDigestSpi

Public Methods

Digest() : byte[]
Computes and returns the final hash value for this Java.Security.MessageDigest.
Digest(byte[]) : byte[]
Performs the final update and then computes and returns the final hash value for this Java.Security.MessageDigest.
Digest(byte[], int, int) : int
Computes and stores the final hash value for this Java.Security.MessageDigest.
static
GetInstance(string) : MessageDigest
Returns a new instance of MessageDigest that utilizes the specified algorithm.
static
GetInstance(string, Provider) : MessageDigest
Returns a new instance of MessageDigest that utilizes the specified algorithm from the specified provider.
static
GetInstance(string, string) : MessageDigest
Returns a new instance of MessageDigest that utilizes the specified algorithm from the specified provider.
static
IsEqual(byte[], byte[]) : bool
Indicates whether to digest are equal by performing a simply byte-per-byte compare of the two digests.
Reset()
Puts this MessageDigest back in an initial state, such that it is ready to compute a one way hash value.
Update(Java.Nio.ByteBuffer)
Updates this MessageDigest using the given input.
Update(byte[])
Updates this MessageDigest using the given byte[].
Update(sbyte)
Updates this MessageDigest using the given byte.
Update(byte[], int, int)
Updates this MessageDigest using the given byte[].