- move towards verification
[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    * Unique identifier for this request (for key collisions).
54    */
55   uint32_t id GNUNET_PACKED;
56
57   /* Followed by the zero-terminated attributes to look up */
58
59 };
60
61
62 /**
63  * Message from CREDENTIAL service to client: new results.
64  */
65 struct VerifyResultMessage
66 {
67   /**
68     * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY_RESULT
69    */
70   struct GNUNET_MessageHeader header;
71
72   /**
73    * Unique identifier for this request (for key collisions).
74    */
75   uint32_t id GNUNET_PACKED;
76
77
78   /**
79    * The number of credentials in the response
80    */
81   uint32_t ad_count GNUNET_PACKED;
82
83   /* followed by ad_count GNUNET_CREDENTIAL_RecordData structs*/
84
85 };
86
87
88 GNUNET_NETWORK_STRUCT_END
89
90 #endif
91