aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java
blob: 59519a343c91bf3dc8048b0e02cbf0e9b9b29b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package java.security;

import java.io.IOException;
import java.security.spec.AlgorithmParameterSpec;
import java.security.spec.InvalidParameterSpecException;

public abstract class AlgorithmParametersSpi extends Object
{
    public AlgorithmParametersSpi()
    {
    }

    protected abstract byte[] engineGetEncoded()
        throws IOException;
    protected abstract byte[] engineGetEncoded(String format)
        throws IOException;
    protected abstract AlgorithmParameterSpec engineGetParameterSpec(Class paramSpec)
        throws InvalidParameterSpecException;
    protected abstract void engineInit(AlgorithmParameterSpec paramSpec)
        throws InvalidParameterSpecException;
    protected abstract void engineInit(byte[] params)
        throws IOException;
    protected abstract void engineInit(byte[] params, String format)
        throws IOException;
    protected abstract String engineToString();
}