Class MD5
MD5 hash calculator.
Inherited Members
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class MD5
Constructors
MD5()
MD5 hash calculator.
Declaration
public MD5()
Methods
Calculate(byte[])
Calculates the MD5 hash.
Declaration
public static string Calculate(byte[] input)
Parameters
| Type | Name | Description |
|---|---|---|
| byte[] | input | The input bytes. |
Returns
| Type | Description |
|---|---|
| string | The MD5 hash as a string. |
leftRotate(uint, int)
Performs left rotation of bits.
Declaration
public static uint leftRotate(uint x, int c)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | x | The value. |
| int | c | The rotation count. |
Returns
| Type | Description |
|---|---|
| uint | The rotated value. |