MD5 hash calculator.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class MD5Calculates the MD5 hash.
public static string Calculate(Byte[] input)
| Type | Name | Description |
|---|---|---|
| Byte[] | input | The input bytes. |
| Type | Description |
|---|---|
| string | The MD5 hash as a string. |
Performs left rotation of bits.
public static uint leftRotate(uint x, int c)
| Type | Name | Description |
|---|---|---|
| uint | x | The value. |
| int | c | The rotation count. |
| Type | Description |
|---|---|
| uint | The rotated value. |