This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# gpg-export-wkd.sh: Uses gnupg and sequoia-sq to generate a Web Key Directory. | |
# See https://tools.ietf.org/html/draft-koch-openpgp-webkey-service-11 and | |
# https://wiki.gnupg.org/WKD for details. | |
# | |
# Prerequisite: gpg and sq must be located through the PATH. | |
# Install sq with `crate install sequoia-sq` | |
# See also https://crates.io/crates/sequoia-sq | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
% by default, final versions do not use tikz | |
\newif\ifdotikz\dotikzfalse | |
% drafts do tikz, final versions do not: | |
% comment out next line for final version | |
\dotikztrue | |
\usepackage{graphicx} |