Interface SecretStorePrivateKeys

Internal module. Definitions for storage for the crypto module

interface SecretStorePrivateKeys {
    dehydration: null | {
        deviceDisplayName: string;
        key: IEncryptedPayload;
        keyInfo: undefined | {
            [props: string]: any;
        };
        time: number;
    };
    m.megolm_backup.v1: IEncryptedPayload;
}

Properties

dehydration: null | {
    deviceDisplayName: string;
    key: IEncryptedPayload;
    keyInfo: undefined | {
        [props: string]: any;
    };
    time: number;
}

Type declaration

  • deviceDisplayName: string
  • key: IEncryptedPayload
  • keyInfo: undefined | {
        [props: string]: any;
    }
  • time: number
m.megolm_backup.v1: IEncryptedPayload

Generated using TypeDoc