pgpainless/pgpainless-core/src/main/kotlin/org/pgpainless/key/generation/type/xdh/XDHSpec.kt

13 lines
337 B
Kotlin
Raw Normal View History

2023-09-07 15:26:24 +02:00
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.key.generation.type.xdh
enum class XDHSpec(val algorithmName: String, val curveName: String, val bitStrength: Int) {
2023-09-07 15:26:24 +02:00
_X25519("X25519", "curve25519", 256),
;
fun getName() = algorithmName
}