interface ICacheCallbacks {
    getCrossSigningKeyCache(
        type: string,
        expectedPublicKey?: string,
    ): Promise<null | Uint8Array<ArrayBufferLike>>;
    storeCrossSigningKeyCache(
        type: string,
        key?: Uint8Array<ArrayBufferLike>,
    ): Promise<void>;
}

Methods