sop.enums.SignatureMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sop-java Show documentation
Show all versions of sop-java Show documentation
Stateless OpenPGP Protocol API for Java
// SPDX-FileCopyrightText: 2023 Paul Schaub
//
// SPDX-License-Identifier: Apache-2.0
package sop.enums;
/**
* Enum referencing relevant signature types.
*
* @see
* RFC4880 §5.2.1 - Signature Types
*/
public enum SignatureMode {
/**
* Signature of a binary document (0x00
).
*/
binary,
/**
* Signature of a canonical text document (0x01
).
*/
text
// Other Signature Types are irrelevant.
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy