~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to include/linux/key-type.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        const void      *data;          /* Raw data */
46
46
        size_t          datalen;        /* Raw datalen */
47
47
        size_t          quotalen;       /* Quota length for proposed payload */
 
48
        bool            trusted;        /* True if key is trusted */
48
49
};
49
50
 
50
51
typedef int (*request_key_actor_t)(struct key_construction *key,
63
64
         */
64
65
        size_t def_datalen;
65
66
 
 
67
        /* Default key search algorithm. */
 
68
        unsigned def_lookup_type;
 
69
#define KEYRING_SEARCH_LOOKUP_DIRECT    0x0000  /* Direct lookup by description. */
 
70
#define KEYRING_SEARCH_LOOKUP_ITERATE   0x0001  /* Iterative search. */
 
71
 
66
72
        /* vet a description */
67
73
        int (*vet_description)(const char *description);
68
74