Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

Result Interface

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

Checksum.Result Properties

id

readonly id: string;
// This property is not available in managed environment
// This property is not available in native environment

Algorithm ID.

name

readonly name: string;
// This property is not available in managed environment
// This property is not available in native environment

Algorithm Name.

rawValue

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.

hexString

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.

decimalString

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.