mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-14 16:32:06 +01:00
Kotlin conversion: XDHSpec
This commit is contained in:
parent
2af8c55250
commit
1f87f184bc
2 changed files with 15 additions and 34 deletions
|
@ -1,34 +0,0 @@
|
||||||
// SPDX-FileCopyrightText: 2020 Paul Schaub <vanitasvitae@fsfe.org>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
package org.pgpainless.key.generation.type.xdh;
|
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
|
||||||
|
|
||||||
public enum XDHSpec {
|
|
||||||
_X25519("X25519", "curve25519", 256),
|
|
||||||
;
|
|
||||||
|
|
||||||
final String name;
|
|
||||||
final String curveName;
|
|
||||||
final int bitStrength;
|
|
||||||
|
|
||||||
XDHSpec(@Nonnull String name, @Nonnull String curveName, int bitStrength) {
|
|
||||||
this.name = name;
|
|
||||||
this.curveName = curveName;
|
|
||||||
this.bitStrength = bitStrength;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCurveName() {
|
|
||||||
return curveName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getBitStrength() {
|
|
||||||
return bitStrength;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
// 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) {
|
||||||
|
_X25519("X25519", "curve25519", 256),
|
||||||
|
;
|
||||||
|
|
||||||
|
fun getName() = algorithmName
|
||||||
|
}
|
Loading…
Reference in a new issue