diff options
author | Werner Koch <[email protected]> | 1999-05-26 12:41:46 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1999-05-26 12:41:46 +0000 |
commit | d5fd04e0ce438d3eaa951566982a0824e48eb1ef (patch) | |
tree | adc1eca7d7eab0d3982ae388be4f592118bf5d7e /g10/packet.h | |
parent | See ChangeLog: Tue May 25 19:50:32 CEST 1999 Werner Koch (diff) | |
download | gnupg-d5fd04e0ce438d3eaa951566982a0824e48eb1ef.tar.gz gnupg-d5fd04e0ce438d3eaa951566982a0824e48eb1ef.zip |
See ChangeLog: Wed May 26 14:36:29 CEST 1999 Werner Koch
Diffstat (limited to 'g10/packet.h')
-rw-r--r-- | g10/packet.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/g10/packet.h b/g10/packet.h index a2af98abb..ac44a4fd3 100644 --- a/g10/packet.h +++ b/g10/packet.h @@ -231,7 +231,9 @@ typedef enum { SIGSUBPKT_POLICY =26, /* policy URL */ SIGSUBPKT_KEY_FLAGS =27, /* key flags */ SIGSUBPKT_SIGNERS_UID =28, /* signer's user id */ - SIGSUBPKT_PRIV_ADD_SIG =101 /* signatur is also valid for this uid */ + SIGSUBPKT_PRIV_ADD_SIG =101,/* signatur is also valid for this uid */ + + SIGSUBPKT_FLAG_CRITICAL=128 } sigsubpkttype_t; @@ -264,8 +266,10 @@ int copy_some_packets( IOBUF inp, IOBUF out, ulong stopoff ); int skip_some_packets( IOBUF inp, unsigned n ); #endif -const byte *parse_sig_subpkt( const byte *buffer, - sigsubpkttype_t reqtype, size_t *ret_n ); +const byte *enum_sig_subpkt( const byte *buffer, sigsubpkttype_t reqtype, + size_t *ret_n, int *start ); +const byte *parse_sig_subpkt( const byte *buffer, sigsubpkttype_t reqtype, + size_t *ret_n ); const byte *parse_sig_subpkt2( PKT_signature *sig, sigsubpkttype_t reqtype, size_t *ret_n ); |