mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-14 16:32:06 +01:00
Kotlin conversion: KeyLength
This commit is contained in:
parent
5b89200ba9
commit
c7f9af01eb
2 changed files with 10 additions and 10 deletions
|
@ -1,10 +0,0 @@
|
||||||
// SPDX-FileCopyrightText: 2018 Paul Schaub <vanitasvitae@fsfe.org>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
package org.pgpainless.key.generation.type;
|
|
||||||
|
|
||||||
public interface KeyLength {
|
|
||||||
|
|
||||||
int getLength();
|
|
||||||
}
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package org.pgpainless.key.generation.type
|
||||||
|
|
||||||
|
interface KeyLength {
|
||||||
|
|
||||||
|
fun getLength(): Int
|
||||||
|
}
|
Loading…
Reference in a new issue