-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 822 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<script>
(function () {
const saved = localStorage.getItem('theme');
document.documentElement.setAttribute('data-theme', saved ?? 'dark');
})();
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="description" content="Format Ward — Interactive browser demo of Format-Preserving Encryption (FF1 and FF3-1) over real WebCrypto AES rounds, per NIST SP 800-38G." />
<meta name="theme-color" content="#0a1216" />
<title>Format Ward | crypto-lab-format-ward</title>
<link rel="stylesheet" href="./styles/main.css" />
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>