Show / Hide Table of Contents

Struct Hash.MD5Result

Result of Hash.MD5Context.Hash. It is 16 bytes stored in 2 long fields r1 and r2. If need, can be converted to byte[] with Hash.MD5Result.ToArray or to hex string with Hash.MD5Result.ToString.

public record struct Hash.MD5Result : IEquatable<Hash.MD5Result>

Namespace: Au.More
Assembly: Au.dll

Constructors

Name Description
MD5Result(long, long)

Fields

Name Description
r1
r2

Methods

Name Description
FromString(ReadOnlySpan<char>, out MD5Result)

Creates MD5Result from hex string returned by Hash.MD5Result.ToString.

ToArray()

Converts this to byte[16].

ToString()

Converts this to hex string.