aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/pem/PemKeyStoreProvider.java
blob: c1fcf8c33bf6fde51e35ca5766a0792d099cb40d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.http.ssl.pem;

import java.security.Provider;

/**
 * @author Tony Vaagenes
 */
public class PemKeyStoreProvider extends Provider {

    public static final String name = "PEMKeyStoreProvider";
    public static final double version = 1;
    public static final String description = "Provides PEM keystore support";

    public PemKeyStoreProvider() {
        super(name, version, description);
        putService(new Service(this, "KeyStore", "PEM", PemKeyStore. class.getName(), PemKeyStore.aliases, PemKeyStore.attributes));
    }

}