1 /*
2 * This file is part of the Civitas software distribution.
3 * Copyright (c) 2007-2008, Civitas project group, Cornell University.
4 * See the LICENSE file accompanying this distribution for further license
5 * and copyright information.
6 */
7 package civitas.crypto.signedciphertext;
8
9 import civitas.crypto.ciphertext.ElGamalCiphertextish;
10 import civitas.util.CivitasBigInteger;
11 import lombok.NonNull;
12 import lombok.Value;
13
14 @Value
15 public class ElGamalSignedCiphertext implements ElGamalCiphertextish {
16 @NonNull public CivitasBigInteger a;
17
18 @NonNull public CivitasBigInteger b;
19
20 @NonNull public CivitasBigInteger c;
21
22 @NonNull public CivitasBigInteger d;
23 }