mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 20:15:59 +01:00
Kotlin conversion: EncryptionPurpose
This commit is contained in:
parent
cf9df963e2
commit
74fb91d876
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
package org.pgpainless.algorithm;
|
||||
package org.pgpainless.algorithm
|
||||
|
||||
public enum EncryptionPurpose {
|
||||
enum class EncryptionPurpose {
|
||||
/**
|
||||
* The stream will encrypt communication that goes over the wire.
|
||||
* E.g. EMail, Chat...
|
||||
|
@ -19,4 +19,4 @@ public enum EncryptionPurpose {
|
|||
* The stream will use keys with either flags to encrypt the data.
|
||||
*/
|
||||
ANY
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue