blob: 712aee845c7d1328ee1e919303f5508d23079aa1 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/**
2 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NDN_KEY_TYPES_H
8#define NDN_KEY_TYPES_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14typedef enum {
15 ndn_KeyLocatorType_KEY = 1,
16 ndn_KeyLocatorType_CERTIFICATE = 2,
17 ndn_KeyLocatorType_KEYNAME = 3
18} ndn_KeyLocatorType;
19
20typedef enum {
21 ndn_KeyNameType_PUBLISHER_PUBLIC_KEY_DIGEST = 1,
22 ndn_KeyNameType_PUBLISHER_CERTIFICATE_DIGEST = 2,
23 ndn_KeyNameType_PUBLISHER_ISSUER_KEY_DIGEST = 3,
24 ndn_KeyNameType_PUBLISHER_ISSUER_CERTIFICATE_DIGEST = 4
25} ndn_KeyNameType;
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif