aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/KeyStore.java
blob: 0ded759a6d156413b1a55e904d6fc6e26cc659d0 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package java.security;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.util.Date;
import java.util.Enumeration;

public class KeyStore extends Object
{
    private KeyStoreSpi keyStoreSpi;
    private Provider provider;
    private String type;
    private boolean initialised;

    protected KeyStore(
        KeyStoreSpi keyStoreSpi,
        Provider provider,
        String type)
    {
        this.keyStoreSpi = keyStoreSpi;
        this.provider = provider;
        this.type = type;
        this.initialised = false;
    }

    public final Enumeration aliases() throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineAliases();
    }

    public final boolean containsAlias(String alias) throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineContainsAlias(alias);
    }

    public final void deleteEntry(String alias) throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        keyStoreSpi.engineDeleteEntry(alias);
    }

    public final Certificate getCertificate(String alias)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineGetCertificate(alias);
    }

    public final String getCertificateAlias(Certificate cert)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineGetCertificateAlias(cert);
    }

    public final Certificate[] getCertificateChain(String alias)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineGetCertificateChain(alias);
    }

    public final Date getCreationDate(String alias) throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineGetCreationDate(alias);
    }

    public static final String getDefaultType()
    {
        return "JKS";
    }

    public static KeyStore getInstance(String type) throws KeyStoreException
    {
        try
        {
            SecurityUtil.Implementation  imp = SecurityUtil.getImplementation("KeyStore", type, null);

            if (imp != null)
            {
                return new KeyStore((KeyStoreSpi)imp.getEngine(), imp.getProvider(), type);
            }

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

    public static KeyStore getInstance(String type, String provider)
    throws KeyStoreException, NoSuchProviderException
    {
        SecurityUtil.Implementation  imp = SecurityUtil.getImplementation("KeyStore", type, provider);

        if (imp != null)
        {
            return new KeyStore((KeyStoreSpi)imp.getEngine(), imp.getProvider(), type);
        }

        throw new KeyStoreException("can't find type " + type);
    }

    public final Key getKey(String alias, char[] password)
    throws KeyStoreException, NoSuchAlgorithmException,
        UnrecoverableKeyException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineGetKey(alias, password);
    }

    public final Provider getProvider()
    {
        return provider;
    }

    public final String getType()
    {
        return type;
    }

    public final boolean isCertificateEntry(String alias)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineIsCertificateEntry(alias);
    }

    public final boolean isKeyEntry(String alias) throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineIsKeyEntry(alias);
    }

    public final void load(
        InputStream stream,
        char[] password)
    throws IOException, NoSuchAlgorithmException, CertificateException
    {
        keyStoreSpi.engineLoad(stream, password);
        initialised = true;
    }

    public final void setCertificateEntry(String alias, Certificate cert)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        keyStoreSpi.engineSetCertificateEntry(alias, cert);
    }

    public final void setKeyEntry(
        String alias,
        Key key,
        char[] password,
        Certificate[] chain)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        keyStoreSpi.engineSetKeyEntry(alias, key, password, chain);
    }

    public final void setKeyEntry(
        String alias,
        byte[] key,
        Certificate[] chain)
    throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        keyStoreSpi.engineSetKeyEntry(alias, key, chain);
    }

    public final int size() throws KeyStoreException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        return keyStoreSpi.engineSize();
    }

    public final void store(
        OutputStream stream,
        char[] password)
    throws KeyStoreException, IOException, NoSuchAlgorithmException,
        CertificateException
    {
        if ( !initialised )
            throw new KeyStoreException("KeyStore not initialised.");

        keyStoreSpi.engineStore(stream, password);
    }
}