-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (21 loc) · 1.17 KB
/
index.html
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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Crypto API benchmark</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<form method="get" action="./results.html">
<h1>Web Crypto API</h1>
<p>Benchmark for testing Web Crypto API performance on browsers. More info on <a href="https://github.com/pedropaulosuzuki/WebCryptoAPIBenchmark">Github</a>.</p>
<label for="SHA-size">SHA message size in MB:</label><input id="SHA-size" name="SHA-size" type="number" min="1" value="1024">
<label for="AES-size">AES message size in MB:</label><input id="AES-size" name="AES-size" type="number" min="1" value="1024">
<label for="PBKDF2-rounds">PBKDF2 rounds:</label><input id="PBKDF2-rounds" name="PBKDF2-rounds" type="number" min="1" value="1000000">
<input type="submit" value="Benchmark!">
</form>
</body>
</html>