sop-java/sop-java/src/main/java/sop/enums/InlineSignAs.java

25 lines
427 B
Java
Raw Normal View History

2022-05-24 21:44:46 +02:00
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package sop.enums;
public enum InlineSignAs {
/**
* Signature is made over the binary message.
*/
Binary,
/**
* Signature is made over the message in text mode.
*/
Text,
/**
* Signature is made using the Cleartext Signature Framework.
*/
CleartextSigned,
}