17 lines
317 B
Java
17 lines
317 B
Java
package meerkat.voting;
|
|
|
|
import meerkat.comm.Message;
|
|
|
|
/**
|
|
* Created by talm on 25/10/15.
|
|
*/
|
|
public interface EncryptedBallot {
|
|
/**
|
|
* Return the public portion of the ballot (this can be published to the bulletin board without violating privacy).
|
|
* @return
|
|
*/
|
|
Message getPublicPortion();
|
|
|
|
|
|
}
|