-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (74 loc) · 2.35 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Catalyst QR</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Catalyst QR</h1>
<div>
<button id="button">Start</button>
</div>
<div id="container">
<canvas id="canvas"></canvas>
</div>
<table id="results">
<tr class="medium">
<th>QR Data</th>
<td>
<pre id="qrdata"><No data from QR></pre>
</td>
</tr>
<tr class="small">
<th>Salt</th>
<td>
<pre id="salt"><No data from QR></pre>
</td>
</tr>
<tr class="small">
<th>Nonce</th>
<td>
<pre id="nonce"><No data from QR></pre>
</td>
</tr>
<tr class="small">
<th>Encrypted</th>
<td>
<pre id="encrypted"><No data from QR></pre>
</td>
</tr>
<tr class="small">
<th>Tag</th>
<td>
<pre id="tag"><No data from QR></pre>
</td>
</tr>
<tr class="large">
<th>PIN</th>
<td>
<span class="pin" id="one">0</span>
<span class="pin" id="two">0</span>
<span class="pin" id="three">0</span>
<span class="pin" id="four">0</span>
</td>
</tr>
<tr class="small">
<th>Key</th>
<td>
<pre id="key"><No data from derivation></pre>
</td>
</tr>
<tr class="medium">
<th>Decrypted</th>
<td>
<pre id="decrypted"><No data from decryption></pre>
</td>
</tr>
</table>
<script type="module" src="index.js" async></script>
</body>
</html>