diff options
author | Werner Koch <wk@gnupg.org> | 1998-06-29 14:30:57 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-06-29 14:30:57 +0200 |
commit | 77a6af76d04a4762c841627ac95fdc521ca74b72 (patch) | |
tree | beec5dfedffa9c1a25b737911066fe93df4d923f /g10/armor.c | |
parent | bug fixes (diff) | |
download | gnupg2-77a6af76d04a4762c841627ac95fdc521ca74b72.tar.xz gnupg2-77a6af76d04a4762c841627ac95fdc521ca74b72.zip |
textual changes
Diffstat (limited to 'g10/armor.c')
-rw-r--r-- | g10/armor.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/g10/armor.c b/g10/armor.c index 541ba3e76..82b240f75 100644 --- a/g10/armor.c +++ b/g10/armor.c @@ -88,6 +88,7 @@ static char *head_strings[] = { "BEGIN PGP SIGNATURE", "BEGIN PGP SIGNED MESSAGE", "BEGIN PGP ARMORED FILE", + "BEGIN PGP SECRET KEY BLOCK", NULL }; static char *tail_strings[] = { @@ -96,6 +97,7 @@ static char *tail_strings[] = { "END PGP SIGNATURE", "END dummy", "END PGP ARMORED FILE", + "END PGP SECRET KEY BLOCK", NULL }; @@ -153,8 +155,8 @@ is_armored( byte *buf ) pkttype = ctb & 0x40 ? (ctb & 0x3f) : ((ctb>>2)&0xf); switch( pkttype ) { case PKT_MARKER: - case PKT_PUBLIC_CERT: - case PKT_SECRET_CERT: + case PKT_PUBLIC_KEY: + case PKT_SECRET_KEY: case PKT_PUBKEY_ENC: case PKT_SIGNATURE: case PKT_COMMENT: |