mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
Add mksamplekeys script.
* doc/mksamplekeys: New. -- Note that we have the same script in the 1.4 branch. That should be removed and only this one shall be used.
This commit is contained in:
parent
8f8c659414
commit
7441e622ff
@ -28,7 +28,7 @@ helpfiles = help.txt help.be.txt help.ca.txt help.cs.txt \
|
|||||||
help.pt_BR.txt help.ro.txt help.ru.txt help.sk.txt \
|
help.pt_BR.txt help.ro.txt help.ru.txt help.sk.txt \
|
||||||
help.sv.txt help.tr.txt help.zh_CN.txt help.zh_TW.txt
|
help.sv.txt help.tr.txt help.zh_CN.txt help.zh_TW.txt
|
||||||
|
|
||||||
EXTRA_DIST = samplekeys.asc \
|
EXTRA_DIST = samplekeys.asc mksamplekeys \
|
||||||
gnupg-logo.eps gnupg-logo.pdf gnupg-logo.png gnupg-logo-tr.png\
|
gnupg-logo.eps gnupg-logo.pdf gnupg-logo.png gnupg-logo-tr.png\
|
||||||
gnupg-card-architecture.eps gnupg-card-architecture.png \
|
gnupg-card-architecture.eps gnupg-card-architecture.png \
|
||||||
gnupg-card-architecture.pdf \
|
gnupg-card-architecture.pdf \
|
||||||
|
11
doc/mksamplekeys
Executable file
11
doc/mksamplekeys
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#/bin/sh
|
||||||
|
# Generate a samplekeys.asc
|
||||||
|
|
||||||
|
keys='1E42B367 99242560 87978569
|
||||||
|
4F25E3B6 5B0358A2 57548DCD B2D7795E 1CE0C630'
|
||||||
|
|
||||||
|
for i in $keys; do
|
||||||
|
gpg --list-keys $i | awk ' { print " " $0 }'
|
||||||
|
done
|
||||||
|
echo
|
||||||
|
gpg --export-options export-minimal --export -a $keys
|
Loading…
x
Reference in New Issue
Block a user