aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParameters.java
blob: 14f2a5ad6c31491330f844a7300f6c1154af0051 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package java.security;

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

public class AlgorithmParameters extends Object
{
    private AlgorithmParametersSpi spi;
    private Provider provider;
    private String algorithm;

    protected AlgorithmParameters(
        AlgorithmParametersSpi paramSpi,
        Provider provider,
        String algorithm)
    {
        this.spi = paramSpi;
        this.provider = provider;
        this.algorithm = algorithm;
    }

    public final String getAlgorithm()
    {
        return algorithm;
    }

    public final byte[] getEncoded() throws IOException
    {
        return spi.engineGetEncoded();
    }

    public final byte[] getEncoded(String format) throws IOException
    {
        return spi.engineGetEncoded(format);
    }

    public static AlgorithmParameters getInstance(String algorithm)
        throws NoSuchAlgorithmException
    {
        try
        {
            SecurityUtil.Implementation  imp = SecurityUtil.getImplementation("AlgorithmParameters", algorithm, null);

            if (imp != null)
            {
                return new AlgorithmParameters((AlgorithmParametersSpi)imp.getEngine(), imp.getProvider(), algorithm);
            }

            throw new NoSuchAlgorithmException("can't find algorithm " + algorithm);
        }
        catch (NoSuchProviderException e)
        {
            throw new NoSuchAlgorithmException(algorithm + " not found");
        }
    }

    public static AlgorithmParameters getInstance(String algorithm, String provider)
        throws NoSuchAlgorithmException, NoSuchProviderException
    {
        SecurityUtil.Implementation  imp = SecurityUtil.getImplementation("AlgorithmParameters", algorithm, provider);

        if (imp != null)
        {
            return new AlgorithmParameters((AlgorithmParametersSpi)imp.getEngine(), imp.getProvider(), algorithm);
        }

        throw new NoSuchAlgorithmException("can't find algorithm " + algorithm);
    }

    public final AlgorithmParameterSpec getParameterSpec(Class paramSpec)
    throws InvalidParameterSpecException
    {
        return spi.engineGetParameterSpec(paramSpec);
    }

    public final Provider getProvider()
    {
        return provider;
    }

    public final void init(AlgorithmParameterSpec paramSpec)
    throws InvalidParameterSpecException
    {
        spi.engineInit(paramSpec);
    }

    public final void init(byte[] params) throws IOException
    {
        spi.engineInit(params);
    }

    public final void init(byte[] params, String format) throws IOException
    {
        spi.engineInit(params, format);
    }

    public final String toString()
    {
        return spi.engineToString();
    }
}