-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.tsx
More file actions
231 lines (222 loc) · 6.36 KB
/
Copy pathapp.tsx
File metadata and controls
231 lines (222 loc) · 6.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import { useEffect, useMemo, useState } from "preact/hooks";
import nacl from "tweetnacl";
import { Encoder } from "cbor-x";
const subtle = window.crypto.subtle;
const explanation = `This editor stores its content encrypted end-to-end.\nIf you lose the password, the content is lost forever.`;
const maxLength = 65000;
const encoder = new Encoder();
export function App() {
const [working, setWorking] = useState(false);
const [error, setError] = useState<string | null>(null);
const [pw, setPw] = useState("");
const [seed, setSeed] = useState<Uint8Array | null>(null);
const [content, setContent] = useState("");
const message = useMemo(
() => new TextEncoder().encode(content || ""),
[content],
);
const length = message.length;
const lengthError = length > maxLength;
useEffect(() => {
setSeed(null);
setError(null);
let stale = false;
const timeout = setTimeout(() => {
(async () => {
const key = await subtle.importKey(
"raw",
new TextEncoder().encode(pw || ""),
"PBKDF2",
false,
["deriveBits"],
);
const bits = await subtle.deriveBits(
{
name: "PBKDF2",
hash: "SHA-256",
salt: new TextEncoder().encode("1pw.me"),
iterations: 100000,
},
key,
256,
);
if (!stale) {
setSeed(new Uint8Array(bits));
}
})().catch((e) => {
if (!stale) {
setError(e.message);
}
});
}, 300);
return () => {
stale = true;
clearTimeout(timeout);
};
}, [pw]);
function post(msg: Uint8Array | null) {
setWorking(true);
setError(null);
(async () => {
if (seed === null) {
setError("No password");
return;
}
const kp = nacl.sign.keyPair.fromSeed(seed);
const body = encoder.encode([
kp.publicKey,
nacl.sign(
encoder.encode([new Date().getTime() / 1000, msg]),
kp.secretKey,
),
]);
const result = await fetch("https://0pw.me", {
method: "POST",
body,
});
if (!result.ok) {
setError(`${result.status} (${await result.text()})`);
}
})()
.catch((e) => {
setError(e.message);
console.error(e);
})
.finally(() => {
setWorking(false);
});
}
return (
<div class="editor">
<h1>🔏 1pw.me — password → page</h1>
<div>
<input
type="password"
placeholder="Password"
value={pw || ""}
onInput={(e) => setPw((e.target as HTMLInputElement).value)}
/>
<button
disabled={working || !seed}
onClick={() => {
setWorking(true);
setError(null);
(async () => {
if (seed === null) {
setError("No password");
return;
}
const signKP = nacl.sign.keyPair.fromSeed(seed);
const boxKP = nacl.box.keyPair.fromSecretKey(seed);
const postBytes = encoder.encode([signKP.publicKey]);
const result = await fetch("https://0pw.me", {
method: "POST",
body: postBytes,
});
if (!result.ok) {
if (result.status === 404) {
setContent("");
setError("No such page");
return;
}
setError(`${result.status} (${await result.text()})`);
return;
}
const signed = await result.arrayBuffer();
const payload = nacl.sign.open(
new Uint8Array(signed),
signKP.publicKey,
);
if (payload === null) {
setError("Signature verification failed");
return;
}
let [timestamp, message] = encoder.decode(
new Uint8Array(payload),
);
if (typeof timestamp !== "number") {
message = payload;
setError("Legacy format, please save to upgrade.");
}
const [nonce, box] = encoder.decode(new Uint8Array(message));
const opened = nacl.secretbox.open(box, nonce, boxKP.secretKey);
if (opened === null) {
setError("Decryption failed");
return;
}
setContent(new TextDecoder().decode(opened));
})()
.catch((e) => {
setError(e.message);
console.error(e);
})
.finally(() => {
setWorking(false);
});
}}
>
Load
</button>
<button
disabled={working || !seed || lengthError}
onClick={() => {
if (seed === null) {
setError("No password");
return;
}
const nonce = nacl.randomBytes(nacl.box.nonceLength);
post(
encoder.encode([
nonce,
nacl.secretbox(
message,
nonce,
nacl.box.keyPair.fromSecretKey(seed).secretKey,
),
]),
);
}}
>
Save
</button>
<button
disabled={working || !seed}
onClick={() => {
post(null);
setContent("");
}}
>
Delete
</button>{" "}
{error && <span class="error">{error}</span>}
</div>
<textarea
value={content || ""}
placeholder={explanation}
onInput={(e) => setContent((e.target as HTMLTextAreaElement).value)}
></textarea>
<footer>
<div class={(lengthError && "error") || undefined}>
{length} / {maxLength}
</div>
<div>
powered by{" "}
<a href="https://0pw.me" target="_blank">
0pw.me
</a>
, a service by{" "}
<a href="https://xmit.dev" target="_blank">
xmit
</a>
;{" "}
<a
href="https://github.com/xmit-co/1pw.me/blob/main/src/app.tsx"
target="_blank"
>
open source
</a>
</div>
</footer>
</div>
);
}