blob: 5fb6647a98f5234dff8b5882e2343d7683b16ae4 [file] [log] [blame]
package org.bouncycastle.openssl;
public interface PEMEncryptor
{
String getAlgorithm();
byte[] getIV();
byte[] encrypt(byte[] encoding)
throws PEMException;
}