interface Checksum.Result {
// Properties
readonly ${id}: string;
readonly ${name}: string;
readonly ${rawValue}: Uint8Array;
readonly ${hexString}: string;
readonly ${decimalString}: string;
}
// This interface is not available in managed environment
// This interface is not available in native environment
readonly id: string;
// This property is not available in managed environment
// This property is not available in native environment
Algorithm ID.
readonly name: string;
// This property is not available in managed environment
// This property is not available in native environment
Algorithm Name.
readonly rawValue: Uint8Array;
// This property is not available in managed environment
// This property is not available in native environment
Raw checksum result as byte array.
readonly hexString: string;
// This property is not available in managed environment
// This property is not available in native environment
Hexadecimal string representation of the checksum value.
readonly decimalString: string;
// This property is not available in managed environment
// This property is not available in native environment
Decimal string representation of the checksum value. Bytes are separated by spaces.