matrix-react-sdk
Version:
SDK for matrix.org using React
20 lines (19 loc) • 599 B
TypeScript
import React from "react";
interface IProps {
}
interface IState {
/** The device's base64-encoded Ed25519 identity key, or:
*
* * `undefined`: not yet loaded
* * `null`: encryption is not supported (or the crypto stack was not correctly initialized)
*/
deviceIdentityKey: string | undefined | null;
}
export default class CryptographyPanel extends React.Component<IProps, IState> {
constructor(props: IProps);
render(): React.ReactNode;
private onExportE2eKeysClicked;
private onImportE2eKeysClicked;
private updateBlacklistDevicesFlag;
}
export {};