aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cert/jcajce/JcaCertStore.java
blob: 497668142d8773b2ba56311dae988c53b55a72c4 (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
package org.spongycastle.cert.jcajce;

import java.io.IOException;
import java.security.cert.CertificateEncodingException;
import java.security.cert.X509Certificate;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import org.spongycastle.cert.X509CertificateHolder;
import org.spongycastle.util.CollectionStore;

/**
 * Class for storing Certificates for later lookup.
 * <p>
 * The class will convert X509Certificate objects into X509CertificateHolder objects.
 * </p>
 */
public class JcaCertStore
    extends CollectionStore
{
    /**
     * Basic constructor.
     *
     * @param collection - initial contents for the store, this is copied.
     */
    public JcaCertStore(Collection collection)
        throws CertificateEncodingException
    {
        super(convertCerts(collection));
    }

    private static Collection convertCerts(Collection collection)
        throws CertificateEncodingException
    {
        List list = new ArrayList(collection.size());

        for (Iterator it = collection.iterator(); it.hasNext();)
        {
            Object o = it.next();

            if (o instanceof X509Certificate)
            {
                X509Certificate cert = (X509Certificate)o;

                try
                {
                    list.add(new X509CertificateHolder(cert.getEncoded()));
                }
                catch (IOException e)
                {
                    throw new CertificateEncodingException("unable to read encoding: " + e.getMessage());
                }
            }
            else
            {
                list.add((X509CertificateHolder)o);
            }
        }

        return list;
    }
}