use of com.github.zhenwei.provider.jce.spec.ElGamalParameterSpec in project LinLong-Java by zhenwei1108.
the class JCEElGamalPrivateKey method readObject.
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
x = (BigInteger) in.readObject();
this.elSpec = new ElGamalParameterSpec((BigInteger) in.readObject(), (BigInteger) in.readObject());
}
use of com.github.zhenwei.provider.jce.spec.ElGamalParameterSpec in project LinLong-Java by zhenwei1108.
the class JCEElGamalPublicKey method readObject.
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
this.y = (BigInteger) in.readObject();
this.elSpec = new ElGamalParameterSpec((BigInteger) in.readObject(), (BigInteger) in.readObject());
}
Aggregations