View Javadoc
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.ciphertextlist;
8   
9   import java.io.Serial;
10  import java.util.ArrayList;
11  import java.util.List;
12  
13  import civitas.crypto.ciphertext.ElGamalCiphertext;
14  import civitas.crypto.ciphertext.ElGamalCiphertextish;
15  
16  public class CiphertextList extends ArrayList<ElGamalCiphertextish> {
17  	@Serial
18  	private static final long serialVersionUID = 1L;
19  
20  	public CiphertextList(final List<ElGamalCiphertext> list) {
21  		super(list);
22  	}
23  
24  	public CiphertextList() {
25  		super();
26  	}
27  }