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.common.mix.elementrevelation;
8   
9   public interface MixElementRevelation {
10  	//	protected final int mapping;
11  	//	protected final byte[] nonce;
12  	int getMapping();
13  
14  	byte[] getNonce();
15  
16  	//	boolean verify(ElGamalPublicKey key, int fromIndex, int toIndex, Mix fromMix,
17  	//			Mix toMix);
18  
19  }