From bccf04b00633cd463225cdab2933f8c74b1d88c8 Mon Sep 17 00:00:00 2001 From: inference Date: Tue, 24 Jun 2025 18:12:04 +0000 Subject: [PATCH] feat(key): add SSH public key and signature file links --- key.xhtml | 29 +++++++++++++++++++++-------- main.css | 10 +++++++++- 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/key.xhtml b/key.xhtml index 1c43077..93a207f 100644 --- a/key.xhtml +++ b/key.xhtml @@ -1,7 +1,7 @@ - + @@ -96,9 +96,11 @@

SSH keys used to sign data outside of their validity periods should be classified as compromised; only trust SSH keys used within their validity periods.

Each SSH key is signed with the previous key, allowing verification of the - chain-of-trust. It is strongly recommended that you verify the entire - chain, which can be performed by adding each of my public keys to SSH's - allowed_signers file, then running the following command for each key:

+ chain-of-trust. You can download my public keys and their signature files via their ID links + in the table below.

+

It is strongly recommended that you verify the entire chain, which can + be performed by adding each of my public keys to SSH's allowed_signers file, + then running the following command for each key:

ssh-keygen -Y verify -f <allowed_signers file> -I <signer name/email address> -n file -s <signature file of file-to-verify> < <file-to-verify>

You can use my base allowed_signers file in lieu of your own, or inject its contents into your own.

@@ -111,28 +113,39 @@ Validity End - #3 + +

#3

+

(Sig)

+
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHSJTj7ksjVys/nBy3H6Tn+AwJlzLG9RUAtNOBPAaEtj
SHA256:/O3c09/4f1lh4zrhFs2qvQEDda6dZbTwG9xEcj8OfWo
2025-06-23 Present - #2 + +

#2

+

(Sig)

+
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ7xGvfyArrAwOAzjnkPIWYmLzX4JAxjrqpzkDBMycQS
SHA256:K/a677+eHm7chi3X4s77BIpLTE9Vge1tsv+jUL5gI+Y
2024-04-01 2025-06-23 - #1 + +

#1

+

(Sig)

+
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHPGnrIg7dI7GUqA+lTztJSrn+7QyRceajqs4iaU8UG
SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc
2023-07-27 2024-04-01 - #0 + +

#0

+
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINs8UH2hVmNSg0qKig/9ZQt07IuOHsorRfw1doEgMuJ8
SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M
2023-01-01 diff --git a/main.css b/main.css index 083bfc4..3d97b3d 100644 --- a/main.css +++ b/main.css @@ -1,5 +1,5 @@ /* Inferencium - Website - CSS - Main */ -/* Version: 12.5.0-alpha.1 */ +/* Version: 12.5.0-alpha.2 */ /* Copyright 2022 Jake Winters */ /* SPDX-License-Identifier: BSD-3-Clause */ @@ -65,6 +65,10 @@ p { font-size: 16px; } +p.small { + font-size: 12px; +} + p.announce-imp, p.announce-imp a { margin-top: 30%; margin-bottom: 30%; @@ -108,6 +112,10 @@ a { text-decoration: none; } +a.small { + font-size: 12px; +} + a:visited { color: #ce93d8; }