mailiverse/gwt/src/core/crypt/CryptorPGP.java

25 lines
461 B
Java

package core.crypt;
import java.io.IOException;
public abstract class CryptorPGP extends CryptorJS
{
byte[] publicKeyBytes, privateKeyBytes;
public byte[] getPublicKey ()
{
return publicKeyBytes;
}
public byte[] getPrivateKey ()
{
return privateKeyBytes;
}
protected void initialize (byte[] publicKeyBytes, byte[] privateKeyBytes) throws IOException
{
this.privateKeyBytes = privateKeyBytes;
this.publicKeyBytes = publicKeyBytes;
}
}