mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
e4280026f4
which expires at the end of this year. Add g10 Code's source code signing key 37D92FFB.
13 lines
203 B
Plaintext
Executable File
13 lines
203 B
Plaintext
Executable File
#/bin/sh
|
|
# Generate a samplekeys.asc
|
|
|
|
keys="5B0358A2 57548DCD 99242560 CA57AD7C B2D7795E 37D92FFB"
|
|
|
|
for i in $keys; do
|
|
gpg --list-keys $i | awk ' { print " " $0 }'
|
|
done
|
|
echo
|
|
gpg --export -a $keys
|
|
|
|
|