Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PEMEncryptor.java « openssl « bouncycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fb6647a98f5234dff8b5882e2343d7683b16ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.bouncycastle.openssl;

public interface PEMEncryptor
{
    String getAlgorithm();

    byte[] getIV();

    byte[] encrypt(byte[] encoding)
        throws PEMException;
}