aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2014-02-25 11:15:15 +0000
committerFlorian Dold <florian.dold@gmail.com>2014-02-25 11:15:15 +0000
commit85d0048c22271fac371729ba7b14417a28bb6b48 (patch)
treede231f5453baed5b406bb88b19496d16530f3850 /src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java
parent989f297285b843cb631836bf42e47f25fb567418 (diff)
downloadgnunet-java-85d0048c22271fac371729ba7b14417a28bb6b48.tar.gz
gnunet-java-85d0048c22271fac371729ba7b14417a28bb6b48.zip
- support mesh's new NACK message
- remove - python test skeleton for voting - encrypted votes - establish threshold key during ballot registration - ballot tool can request threshold public keys from authorities
Diffstat (limited to 'src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java')
-rw-r--r--src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java b/src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java
new file mode 100644
index 0000000..c94332a
--- /dev/null
+++ b/src/main/java/org/gnunet/voting/messages/KeyQueryResponseMessage.java
@@ -0,0 +1,51 @@
1/*
2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors)
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., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19 */
20
21package org.gnunet.voting.messages;
22
23import org.gnunet.construct.Message;
24import org.gnunet.construct.NestedMessage;
25import org.gnunet.construct.UInt32;
26import org.gnunet.construct.UnionCase;
27import org.gnunet.secretsharing.ThresholdPublicKey;
28import org.gnunet.util.GnunetMessage;
29import org.gnunet.util.HashCode;
30import org.gnunet.util.crypto.EddsaSignature;
31
32@UnionCase(42014)
33public class KeyQueryResponseMessage implements GnunetMessage.Body {
34
35 public static class BallotPublicKey implements Message {
36 @NestedMessage
37 public HashCode ballotGuid;
38
39 @NestedMessage
40 public ThresholdPublicKey publicKey;
41 }
42
43 @NestedMessage
44 public EddsaSignature signature;
45
46 @UInt32
47 public int purpose;
48
49 @NestedMessage
50 public BallotPublicKey signedGuidKey;
51}