Add a script to test fetching PGP keys from a Web Key Directory (WKD).

This commit is contained in:
Tom Alexander 2025-01-12 18:29:48 -05:00
parent 5146a114eb
commit 477637ae62
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
4 changed files with 21 additions and 0 deletions

View File

@ -134,6 +134,7 @@
tcpdump tcpdump
git-crypt git-crypt
nix-index-unwrapped nix-index-unwrapped
gnumake
]; ];
services.openssh = { services.openssh = {

View File

@ -13,6 +13,9 @@
enable = true; enable = true;
setSocketVariable = true; setSocketVariable = true;
}; };
environment.systemPackages = with pkgs; [
docker-buildx
];
environment.persistence."/state" = lib.mkIf (!config.me.buildingIso) { environment.persistence."/state" = lib.mkIf (!config.me.buildingIso) {
hideMounts = true; hideMounts = true;

View File

@ -6,6 +6,14 @@
... ...
}: }:
let
gpg_test_wkd =
(pkgs.writeScriptBin "gpg_test_wkd" (builtins.readFile ./files/gpg_test_wkd.bash)).overrideAttrs
(old: {
buildCommand = "${old.buildCommand}\n patchShebangs $out";
});
in
{ {
imports = [ ]; imports = [ ];
@ -139,6 +147,7 @@
glibcLocales glibcLocales
ccid ccid
libusb-compat-0_1 libusb-compat-0_1
gpg_test_wkd
]; ];
# nixpkgs.overlays = [ # nixpkgs.overlays = [

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
#
# Test that we can retrieve a PGP key using Web Key Directory (WKD)
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
gpg --no-default-keyring --keyring /tmp/gpg-$$ --auto-key-locate clear,wkd --locate-keys "${@}"