pgpainless/pgpainless-core/src/main/kotlin/org/pgpainless/key/generation/type/eddsa/EdDSACurve.kt

13 lines
299 B
Kotlin
Raw Normal View History

2023-09-07 15:08:10 +02:00
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.key.generation.type.eddsa
enum class EdDSACurve(val curveName: String, val bitStrength: Int) {
2023-09-07 15:08:10 +02:00
_Ed25519("ed25519", 256),
;
fun getName() = curveName
}