-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.5 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Certificate Verification</title>
<style>
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; margin: 40px; line-height: 1.5; }
.card { max-width: 820px; padding: 24px; border: 1px solid #ddd; border-radius: 14px; }
code { word-break: break-all; }
a.button { display: inline-block; padding: 10px 14px; border-radius: 10px; border: 1px solid #111; text-decoration: none; }
.muted { color: #555; font-size: 14px; }
</style>
</head>
<body>
<div class="card">
<h1>Certificate Verification</h1>
<p>This page provides the certificate file and its SHA-256 fingerprint for verification.</p>
<p>
<a class="button" href="https://drive.google.com/uc?export=download&id=1bn8xj35C_UppGG-4OCWC9X-tkZBtuRSB">Download certificate (.cer)</a>
</p>
<h2>SHA-256 Fingerprint</h2>
<p class="muted">Compute the SHA-256 fingerprint of the downloaded certificate and confirm it matches:</p>
<code>8de92dc29d5d06d51d8ced17e50b7dc395e4e65355367efebd181084be86e7f1
</code>
<h2>How to verify</h2>
<ul>
<li>Download the certificate.</li>
<li>macOS/Linux: <code>openssl x509 -in cert.cer -noout -fingerprint -sha256</code></li>
<li>Windows (PowerShell): <code>certutil -hashfile cert.cer SHA256</code></li>
<li>Compare with the fingerprint shown above.</li>
</ul>
</div>
</body>
</html>