~ubuntu-branches/ubuntu/raring/reprepro/raring

« back to all changes in this revision

Viewing changes to signature.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernhard R. Link
  • Date: 2011-05-05 16:34:23 UTC
  • mfrom: (21.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110505163423-x49kbdijyoubai4x
Tags: 4.6.0-1
* new release
- general cleanup
- new FilterSrcList
* increase Standards-Version, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
                   all may be false due to non-signing keys used for
28
28
                   signing or things like that */
29
29
                enum signature_state {
30
 
                        sist_error=0, /* internal error */
31
 
                        sist_missing, /* key missing, can not be checked */
32
 
                        sist_bad,     /* broken signature, content may be corrupt */
33
 
                        sist_invalid, /* good signature, but may not sign or al */
34
 
                        sist_mostly,  /* good signature, but check expire bits */
35
 
                        sist_valid    /* good signature, no objections */
36
 
                } state;
 
30
                        /* internal error: */
 
31
                        sist_error=0,
 
32
                        /* key missing, can not be checked: */
 
33
                        sist_missing,
 
34
                        /* broken signature, content may be corrupt: */
 
35
                        sist_bad,
 
36
                        /* good signature, but may not sign or al: */
 
37
                        sist_invalid,
 
38
                        /* good signature, but check expire bits: */
 
39
                        sist_mostly,
 
40
                        /* good signature, no objections: */
 
41
                        sist_valid
 
42
                } state;
37
43
                /* subkey or primary key are expired */
38
44
                bool expired_key;
39
45
                /* signature is expired */