-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathkeybox.html
More file actions
59 lines (46 loc) · 2.17 KB
/
keybox.html
File metadata and controls
59 lines (46 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AxionAOSP - Keybox updater</title>
<!-- Cloudflare DNS Prefetch -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<!-- Preconnect for critical resources -->
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin>
<!-- Preload critical CSS -->
<link rel="preload" href="css/main.css" as="style">
<link rel="preload" href="css/keybox.css" as="style">
<!-- Stylesheets -->
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Space+Grotesk" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/keybox.css" />
<!-- Defer non-critical scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/forge.min.js" defer></script>
<script src="js/keybox.js" defer></script>
</head>
<body>
<h1>
Keybox
<span class="highlight">Updater</span>
</h1>
<p id="keyboxInfo">
Convert private keys in <code>keybox.xml</code> to <code>PKCS#8</code> format so they work with Axion Keybox
Spoofing.
</p>
<button id="uploadBtn" class="btn-primary keybox_btn" onclick="document.getElementById('fileInput').click()">Upload
keybox.xml</button>
<input type="file" id="fileInput" accept=".xml" onchange="fileSelected()" />
<button id="convertBtn" class="btn-primary keybox_btn disabled" onclick="processFile()" disabled>Convert &
Download</button>
<pre id="status"></pre>
</body>
</html>