~ubuntu-branches/ubuntu/lucid/pgpdump/lucid

« back to all changes in this revision

Viewing changes to packet.c

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Rivas
  • Date: 2007-12-16 02:13:45 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20071216021345-lprua5i24y7l2mmw
Tags: 0.26-1
* New upstream version. (Closes: #443522)
* debian/copyright:
 + Updated source URL.
* debian/watch:
 + Updated watch URL.
* debian/rules:
 + Migrated to CDBS, completely new `debian/rules`.
* debian/control:
 + Standard-Versions updated to 3.7.3, no further modifications needed.
 + Added to Build-depends `cdbs`.

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
        
162
162
private string
163
163
SIGSUB[] = {
164
 
        "unknown(sub 0)",
165
 
        "unknown(sub 1)",
 
164
        "reserved(sub 0)",
 
165
        "reserved(sub 1)",
166
166
        "signature creation time(sub 2)",
167
167
        "signature expiration time(sub 3)",
168
168
        "exportable certification(sub 4)",
169
169
        "trust signature(sub 5)", 
170
170
        "regular expression(sub 6)",
171
171
        "revocable(sub 7)",
172
 
        "unknown(sub 8)",
 
172
        "reserved(sub 8)",
173
173
        "key expiration time(sub 9)",
174
174
        "additional decryption key(sub 10) WARNING: see CA-2000-18!!!",
175
175
        "preferred symmetric algorithms(sub 11)", 
176
176
        "revocation key(sub 12)", 
177
 
        "unknown(sub 13)",
178
 
        "unknown(sub 14)",
179
 
        "unknown(sub 15)",
 
177
        "reserved(sub 13)",
 
178
        "reserved(sub 14)",
 
179
        "reserved(sub 15)",
180
180
        "issuer key ID(sub 16)", 
181
 
        "unknown(sub 17)",
182
 
        "unknown(sub 18)",
183
 
        "unknown(sub 19)",
 
181
        "reserved(sub 17)",
 
182
        "reserved(sub 18)",
 
183
        "reserved(sub 19)",
184
184
        "notation data(sub 20)",
185
185
        "preferred hash algorithms(sub 21)",
186
186
        "preferred compression algorithms(sub 22)",
193
193
        "reason for revocation(sub 29)",
194
194
        "features(sub 30)",
195
195
        "signature target(sub 31)",
196
 
        "embedded signature(sub 32",
 
196
        "embedded signature(sub 32)",
197
197
};
198
198
#define SIGSUB_NUM (sizeof(SIGSUB) / sizeof(string))
199
199