summaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/tls/KeyAlgorithm.java
blob: d685f85b206497cfe7c42562b4da4a60103351b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.tls;

/**
 * @author bjorncs
 * @deprecated Use com.yahoo.security.*
 */
@Deprecated
public enum KeyAlgorithm {
    RSA("RSA");

    private final String algorithmName;

    KeyAlgorithm(String algorithmName) {
        this.algorithmName = algorithmName;
    }

    String getAlgorithmName() {
        return algorithmName;
    }
}