d52776cfa44a6235bbc54fcd95384802b2c1de1b
[oweals/gnunet.git] / src / credential / credential.h
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2012-2013 GNUnet e.V.
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18       Boston, MA 02110-1301, USA.
19  */
20 /**
21  * @file credential/credential.h
22  * @brief IPC messages between CREDENTIAL API and CREDENTIAL service
23  * @author Adnan Husain 
24  */
25 #ifndef CREDENTIAL_H
26 #define CREDENTIAL_H
27
28 #include "gnunet_credential_service.h"
29
30 GNUNET_NETWORK_STRUCT_BEGIN
31
32 /**
33  * Message from client to Credential service to verify attributes.
34  */
35 struct VerifyMessage
36 {
37   /**
38    * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY
39    */
40   struct GNUNET_MessageHeader header;
41
42   /**
43    * Subject public key
44    */
45   struct GNUNET_CRYPTO_EcdsaPublicKey subject_key;
46
47   /**
48    * Trust anchor
49    */
50   struct GNUNET_CRYPTO_EcdsaPublicKey issuer_key;
51
52   /**
53    * Length of the issuer attribute
54    */
55   uint16_t issuer_attribute_len;
56
57   /**
58    * Length of the subject attribute
59    */
60   uint16_t subject_attribute_len;
61
62   /**
63    * Unique identifier for this request (for key collisions).
64    */
65   uint32_t id GNUNET_PACKED;
66
67   /* Followed by the zero-terminated attributes to look up */
68
69 };
70
71
72 /**
73  * Message from CREDENTIAL service to client: new results.
74  */
75 struct VerifyResultMessage
76 {
77   /**
78     * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY_RESULT
79    */
80   struct GNUNET_MessageHeader header;
81
82   /**
83    * Unique identifier for this request (for key collisions).
84    */
85   uint32_t id GNUNET_PACKED;
86   
87   /**
88    * Indicates if credential has been found at all
89    */
90   uint32_t cred_found GNUNET_PACKED;
91
92   /**
93    * The number of credentials in the response
94    */
95   uint32_t cd_count GNUNET_PACKED;
96
97   /* followed by ad_count GNUNET_CREDENTIAL_RecordData structs*/
98
99 };
100
101
102 GNUNET_NETWORK_STRUCT_END
103
104 #endif
105