View Javadoc
1   package civitas.crypto.parameters.encoder;
2   
3   import civitas.crypto.CryptoException;
4   import civitas.crypto.parameters.ElGamalParameters;
5   import civitas.util.CivitasBigInteger;
6   
7   public class SchnorrPrimeDecode {
8   	public CivitasBigInteger apply(final CivitasBigInteger m, final ElGamalParameters elGamalParameters)
9   			throws CryptoException {
10  		throw new CryptoException("Decoding is not supported for Schnorr prime groups.");
11  	}
12  }