aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/UltiSnips/text.snippets
blob: 866b0ac8b0361a922934450ad183dded0e7a909e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
snippet pgp_validation_token "A token text to use for verification" b
I am the holder of the PGP key with the ID
${1:PGP KEY ID}
and the mail address
${2:UID}

I am clear-signing this token file for the purpose of validating my PGP key ID
and UID for the use in archlinux-keyring.
https://gitlab.archlinux.org/archlinux/archlinux-keyring
The resulting clear-signed token file has no application beyond its intended
scope.

Verification token:
${3:`tr -dc A-Za-z0-9 </dev/urandom | head -c 13`}
endsnippet