mirror of
https://github.com/logos-messaging/examples.waku.org.git
synced 2026-01-05 14:23:12 +00:00
91 lines
2.2 KiB
TypeScript
91 lines
2.2 KiB
TypeScript
import { Button } from "@material-ui/core";
|
|
import { LoadKeyPair } from "./LoadKeyPair";
|
|
import { SaveKeyPair } from "./SaveKeyPair";
|
|
import React, { useState } from "react";
|
|
import { generateEncryptionKeyPair, KeyPair } from "../crypto";
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
import PasswordInput from "./PasswordInput";
|
|
|
|
const useStyles = makeStyles({
|
|
root: {
|
|
textAlign: "center",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
flexDirection: "column",
|
|
margin: "5px",
|
|
},
|
|
generate: { margin: "5px" },
|
|
storage: {
|
|
margin: "5px",
|
|
},
|
|
loadSave: {
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
margin: "5px",
|
|
},
|
|
loadSaveButton: {
|
|
margin: "5px",
|
|
},
|
|
});
|
|
|
|
export interface Props {
|
|
encryptionKeyPair: KeyPair | undefined;
|
|
setEncryptionKeyPair: (keyPair: KeyPair) => void;
|
|
}
|
|
|
|
export default function KeyPairHandling({
|
|
encryptionKeyPair,
|
|
setEncryptionKeyPair,
|
|
}: Props) {
|
|
const classes = useStyles();
|
|
|
|
const [password, setPassword] = useState<string>();
|
|
|
|
const generateKeyPair = () => {
|
|
if (encryptionKeyPair) return;
|
|
|
|
generateEncryptionKeyPair()
|
|
.then((keyPair) => {
|
|
setEncryptionKeyPair(keyPair);
|
|
})
|
|
.catch((e) => {
|
|
console.error("Failed to generate Key Pair", e);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className={classes.root}>
|
|
<Button
|
|
className={classes.generate}
|
|
variant="contained"
|
|
color="primary"
|
|
onClick={generateKeyPair}
|
|
disabled={!!encryptionKeyPair}
|
|
>
|
|
Generate Encryption Key Pair
|
|
</Button>
|
|
<div className={classes.storage}>
|
|
<PasswordInput
|
|
password={password}
|
|
setPassword={(p) => setPassword(p)}
|
|
/>
|
|
<div className={classes.loadSave}>
|
|
<div className={classes.loadSaveButton}>
|
|
<LoadKeyPair
|
|
setEncryptionKeyPair={(keyPair) => setEncryptionKeyPair(keyPair)}
|
|
disabled={!!encryptionKeyPair}
|
|
password={password}
|
|
/>
|
|
</div>
|
|
<div className={classes.loadSaveButton}>
|
|
<SaveKeyPair
|
|
EncryptionKeyPair={encryptionKeyPair}
|
|
password={password}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|