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.proof1ofl;
8
9 import civitas.util.CivitasBigInteger;
10 import lombok.Value;
11
12 @Value
13 public class ElGamalProof1OfL {
14
15 public int L;
16 public CivitasBigInteger[] dvs;
17 public CivitasBigInteger[] rvs;
18 }