14 lines
317 B
Java
14 lines
317 B
Java
package meerkat.crypto.mixnet;
|
|
|
|
import meerkat.protobuf.Crypto;
|
|
import meerkat.protobuf.Mixing;
|
|
|
|
/**
|
|
* Created by Tzlil on 1/18/2016.
|
|
*/
|
|
public interface MixerOutput {
|
|
public Mixing.Mix2Proof[][] getProofs();
|
|
public Crypto.RerandomizableEncryptedMessage[][] getEncryptedMessages();
|
|
public int getN();
|
|
}
|