1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-15 17:02:06 +01:00

Kotlin conversion: EncryptionPurpose

This commit is contained in:
Paul Schaub 2023-08-04 17:03:22 +02:00
parent cf9df963e2
commit 74fb91d876
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -1,10 +1,10 @@
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org> // SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
// //
// SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: Apache-2.0
package org.pgpainless.algorithm; package org.pgpainless.algorithm
public enum EncryptionPurpose { enum class EncryptionPurpose {
/** /**
* The stream will encrypt communication that goes over the wire. * The stream will encrypt communication that goes over the wire.
* E.g. EMail, Chat... * E.g. EMail, Chat...
@ -19,4 +19,4 @@ public enum EncryptionPurpose {
* The stream will use keys with either flags to encrypt the data. * The stream will use keys with either flags to encrypt the data.
*/ */
ANY ANY
} }