Interface ICyclicRedundancyCheck

interface ICyclicRedundancyCheck {
    FinalXORValue: BitString;
    InitialValue: BitString;
    InputReflected: boolean;
    Polynomial: BitString;
    ResultReflected: boolean;
    Width: number;
    Compute(str: string): Promise<BitString>;
    ComputerWithoutTable(str: string): Promise<BitString>;
    MakeTable(): BitString[];
    PrintTable(): void;
}

Hierarchy (view full)

Implemented by

Properties

FinalXORValue: BitString
InitialValue: BitString
InputReflected: boolean
Polynomial: BitString
ResultReflected: boolean
Width: number

Methods

  • Parameters

    • str: string

    Returns Promise<BitString>

  • Parameters

    • str: string

    Returns Promise<BitString>

  • Returns void