signify-ts
    Preparing search index...

    Interface IdentifierManager<T>

    Interface for KERI identifier (prefix) creation, rotation, and signing.

    interface IdentifierManager<
        T extends IdentifierManagerParams = IdentifierManagerParams,
    > {
        algo: Algos;
        signers: Signer[];
        incept(transferable: boolean): Promise<IdentifierManagerResult>;
        params(): T;
        rotate(
            ncodes: string[],
            transferable: boolean,
            states?: KeyState[],
            rstates?: KeyState[],
        ): Promise<IdentifierManagerResult>;
        sign(
            ser: Uint8Array,
            indexed?: boolean,
            indices?: number[],
            ondices?: number[],
        ): Promise<SignResult>;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    Methods

    Properties

    algo: Algos
    signers: Signer[]

    Methods

    • Parameters

      • ser: Uint8Array
      • Optionalindexed: boolean
      • Optionalindices: number[]
      • Optionalondices: number[]

      Returns Promise<SignResult>