C# Class phdesign.NppToolBucket.Utilities.Security.MD5

显示文件 Open project: phdesign/NppToolBucket

Public Methods

Method Description
ComputeHash ( Stream inputStream ) : string

Generate MD5 checksum for a stream. Rewinds stream.

ComputeHash ( string input ) : string

Generate MD5 checksum for a string.

Method Details

ComputeHash() public static method

Generate MD5 checksum for a stream. Rewinds stream.
public static ComputeHash ( Stream inputStream ) : string
inputStream Stream The stream to create checksum of.
return string

ComputeHash() public static method

Generate MD5 checksum for a string.
public static ComputeHash ( string input ) : string
input string The string to create checksum of.
return string