diff options
author | David Shaw <[email protected]> | 2006-05-23 22:48:21 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-05-23 22:48:21 +0000 |
commit | 071d362ba61bd22668ce6594c9e837d5d32a6b21 (patch) | |
tree | 5416ebd18d2d1fb851ac82ab4213523b14ec4414 | |
parent | * gpg.c (reopen_std): New function to reopen fd 0, 1, or 2 if we are (diff) | |
download | gnupg-071d362ba61bd22668ce6594c9e837d5d32a6b21.tar.gz gnupg-071d362ba61bd22668ce6594c9e837d5d32a6b21.zip |
* mksamplekeys: Incorporate new package signature key and minimize keys
when generating samplekeys.asc.
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rwxr-xr-x | doc/mksamplekeys | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index d415f1662..f1287b11b 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2006-05-23 David Shaw <[email protected]> + + * mksamplekeys: Incorporate new package signature key and minimize + keys when generating samplekeys.asc. + 2006-05-17 Werner Koch <[email protected]> * samplekeys.asc: Added new package signature key and cleaned all diff --git a/doc/mksamplekeys b/doc/mksamplekeys index 2bf8910e8..301ab9432 100755 --- a/doc/mksamplekeys +++ b/doc/mksamplekeys @@ -1,12 +1,12 @@ #/bin/sh # Generate a samplekeys.asc -keys="5B0358A2 57548DCD 99242560 CA57AD7C B2D7795E 37D92FFB" +keys="5B0358A2 57548DCD 99242560 CA57AD7C B2D7795E 1CE0C630" for i in $keys; do gpg --list-keys $i | awk ' { print " " $0 }' done echo -gpg --export -a $keys +gpg --export-options export-minimal --export -a $keys |