FROST Core TypeScript Library - v0.2.2-alpha.3
    Preparing search index...

    Interface IdentifierLike<C>

    interface IdentifierLike<C extends Ciphersuite> {
        toScalar(): C["Scalar"];
        clone(): IdentifierLike<C>;
        serialize(): Uint8Array;
        equals(other: IdentifierLike<C>): boolean;
    }

    Type Parameters

    Index

    Methods

    • Returns Uint8Array