// 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 */ enum class SignatureMode { /** Signature of a binary document (type `0x00`). */ binary, /** Signature of a canonical text document (type `0x01`). */ text }