Date: 2023-04-22
Setup:
- Disk:
/dev/da3
(500GB) - Use full disk
- UEFI boot
- GPT disk type (don't use disklabel64(8))
// SPDX-License-Identifier: MIT | |
// | |
// Simple DNS server that inspects the query and reflects it back. | |
// | |
// Weitian LI | |
// 2024-10-23 | |
// | |
package main |
// SPDX-License-Identifier: MIT | |
// | |
// OCSP Responder accompanying Pebble CA. | |
// | |
// Aaron LI | |
// 2024-09-13 | |
// | |
// Credits: | |
// - How can a client get the revocation status of a certificate? | |
// https://github.com/letsencrypt/pebble/issues/177#issuecomment-515928913 |
/*- | |
* SPDX-License-Identifier: MIT | |
* | |
* Copyright (c) 2022-2023 Aaron LI | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell copies of the Software, and to |
# <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
# |<---- Using a Maximum Of 50 Characters ---->| | |
# Explain why this change is being made | |
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
# Provide links or keys to any relevant tickets, articles or other resources | |
# Example: Github issue #23 |
-- Hexdump the input data using the same style as 'hexdump -C'. | |
-- Supports Lua 5.1 and above. | |
-- Credit: http://lua-users.org/wiki/HexDump | |
function hexdump(data) | |
if type(data) ~= "string" then | |
return nil, "expected string type, but given " .. type(data) | |
end | |
local pieces = {} | |
local i = 1 |
#!/usr/bin/env perl | |
# | |
# Cat file to terminal at particular speed of lines per second | |
# https://superuser.com/a/526249 | |
# | |
# Usage: cat-lps.pl [lps] [file]... | |
# | |
use warnings; | |
use strict; |
/*- | |
* Read Ed25519 public and private keys in DER format. | |
*/ | |
#include <stdio.h> | |
#include <openssl/err.h> | |
#include <openssl/evp.h> | |
#include <openssl/x509.h> | |
#include "private.h" /* generated by 'pem-to-c.sh' */ |