<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version  (Ruby 3.1.2) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-dkg-openpgp-stateless-cli-06" category="info" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title>Stateless OpenPGP Command Line Interface</title>

    <author initials="D. K." surname="Gillmor" fullname="Daniel Kahn Gillmor">
      <organization abbrev="ACLU">American Civil Liberties Union</organization>
      <address>
        <postal>
          <street>125 Broad St.</street>
          <city>New York, NY</city>
          <code>10004</code>
          <country>USA</country>
        </postal>
        <email>dkg@fifthhorseman.net</email>
      </address>
    </author>

    <date year="2023" month="March" day="10"/>

    <area>int</area>
    <workgroup>openpgp</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document defines a generic stateless command-line interface for dealing with OpenPGP messages, known as <spanx style="verb">sop</spanx>.
It aims for a minimal, well-structured API covering OpenPGP object security.</t>



    </abstract>

    <note title="About This Document" removeInRFC="true">
      <t>
        The latest revision of this draft can be found at <eref target="https://dkg.gitlab.io/openpgp-stateless-cli/"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        OpenPGP Working Group mailing list (<eref target="mailto:openpgp@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/openpgp/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/openpgp/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://gitlab.com/dkg/openpgp-stateless-cli/"/>.</t>
    </note>


  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<t>Different OpenPGP implementations have many different requirements, which typically break down in two main categories: key/certificate management and object security.</t>

<t>The purpose of this document is to provide a "stateless" interface that primarily handles the object security side of things, and assumes that secret key management and certificate management will be handled some other way.</t>

<t>Isolating object security from key/certificate management should make it easier to provide interoperability testing for the object security side of OpenPGP implementations, as described in <xref target="test-suite"/>.</t>

<t>This document defines a generic stateless command-line interface for dealing with OpenPGP messages, known here by the placeholder <spanx style="verb">sop</spanx>.
It aims for a minimal, well-structured API.</t>

<t>An OpenPGP implementation should not name its executable <spanx style="verb">sop</spanx> to implement this specification.  It just needs to provide a program that conforms to this interface.</t>

<t>A <spanx style="verb">sop</spanx> implementation should leave no trace on the system, and its behavior should not be affected by anything other than command-line arguments and input.</t>

<t>Obviously, the user will need to manage their secret keys (and their peers' certificates) somehow,
but the goal of this interface is to separate out that task from the task of interacting with OpenPGP messages.</t>

<t>While this document identifies a command-line interface,
the rough outlines of this interface should also be amenable to relatively straightforward library implementations in different languages.</t>

<section anchor="requirements-language"><name>Requirements Language</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

</section>
<section anchor="terminology"><name>Terminology</name>

<t>This document uses the term "key" to refer exclusively to OpenPGP Transferable Secret Keys (see <xref section="11.2" sectionFormat="of" target="RFC4880"/>).</t>

<t>It uses the term "certificate" to refer to OpenPGP Transferable Public Key (see <xref section="11.1" sectionFormat="of" target="RFC4880"/>).</t>

<t>"Stateless" in "Stateless OpenPGP" means avoiding secret key and certificate state.
The user is responsible for managing all OpenPGP certificates and secret keys themselves,
and passing them to <spanx style="verb">sop</spanx> as needed.
The user should also not be concerned that any state could affect the underlying operations.</t>

<t>OpenPGP revocations can have "Reason for Revocation" (<xref section="5.2.3.23" sectionFormat="of" target="RFC4880"/>), which can be either "soft" or "hard".
The set of "soft" reasons is: "Key is superseded" and "Key is retired and no longer used".
All other reasons (and revocations that do not state a reason) are "hard" revocations.</t>

</section>
<section anchor="test-suite"><name>Using sop in a Test Suite</name>

<t>If an OpenPGP implementation provides a <spanx style="verb">sop</spanx> interface, it can be used to test interoperability (e.g., <xref target="OpenPGP-Interoperability-Test-Suite"></xref>).</t>

<t>Such an interop test suite can, for example, use custom code (<em>not</em> <spanx style="verb">sop</spanx>) to generate a new OpenPGP object that incorporates new primitives, and feed that object to a stable of <spanx style="verb">sop</spanx> implementations, to determine whether those implementations can consume the new form.</t>

<t>Or, the test suite can drive each <spanx style="verb">sop</spanx> implementation with a simple input, and observe which cryptographic primitives each implementation chooses to use as it produces output.</t>

</section>
<section anchor="semantics-vs-wire-format"><name>Semantics vs. Wire Format</name>

<t>The semantics of <spanx style="verb">sop</spanx> are deliberately simple and very high-level compared to the vast complexity and nuance available within the OpenPGP specification.
This reflects the perspective of nearly every piece of tooling that relies on OpenPGP to accomplish its task: most toolchains don't care about the specifics, they just want the high-level object security properties.</t>

<t>Given this framing, this document generally tries to avoid overconstraining the details of the wire format objects emitted, or what kinds of wire format structures should be acceptable or unacceptable.
This allows a test suite to evaluate and contrast the wire format choices made by different implementations in as close to their native configuration as possible.
It also makes it easier to promote interoperability by ensuring that the native wire formats emitted by one implementation can be consumed by another, without relying on their choices of wire format being constrained by this draft.</t>

<t>Where this draft does identify specific wire format requirements, that might be due to an ambiguity in the existing specifications (which maybe needs fixing elsewhere), or to a bug in this specification that could be improved.</t>

</section>
</section>
<section anchor="examples"><name>Examples</name>

<t>These examples show no error checking, but give a flavor of how <spanx style="verb">sop</spanx> might be used in practice from a shell.</t>

<t>The key and certificate files described in them (e.g. <spanx style="verb">alice.sec</spanx>) could be for example those found in <xref target="I-D.draft-bre-openpgp-samples-01"/>.</t>

<figure><artwork><![CDATA[
sop generate-key "Alice Lovelace <alice@openpgp.example>" > alice.sec
sop extract-cert < alice.sec > alice.pgp

sop generate-key "Bob Babbage <bob@openpgp.example>" > bob.sec
sop extract-cert < bob.sec > bob.pgp

sop sign --as=text alice.sec < statement.txt > statement.txt.asc
sop verify statement.txt.asc alice.pgp < statement.txt

sop encrypt --sign-with=alice.sec bob.pgp < msg.eml > ciphertext.asc
sop decrypt bob.sec < ciphertext.asc > cleartext.eml
]]></artwork></figure>

<t>See <xref target="failure-modes"/> for more information about errors and error handling.</t>

</section>
<section anchor="subcommands"><name>Subcommands</name>

<t><spanx style="verb">sop</spanx> uses a subcommand interface, similar to those popularized by systems like <spanx style="verb">git</spanx> and <spanx style="verb">svn</spanx>.</t>

<t>If the user supplies a subcommand that <spanx style="verb">sop</spanx> does not implement, it fails with <spanx style="verb">UNSUPPORTED_SUBCOMMAND</spanx>.
If a <spanx style="verb">sop</spanx> implementation does not handle a supplied option for a given subcommand, it fails with <spanx style="verb">UNSUPPORTED_OPTION</spanx>.</t>

<t>All subcommands that produce OpenPGP material on standard output produce ASCII-armored (<xref section="6" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>) objects by default (except for <spanx style="verb">sop dearmor</spanx>).
These subcommands have a <spanx style="verb">--no-armor</spanx> option, which causes them to produce binary OpenPGP material instead.</t>

<t>All subcommands that accept OpenPGP material on input should be able to accept either ASCII-armored or binary inputs (see <xref target="optional-input-armoring"/>) and behave accordingly.</t>

<t>See <xref target="indirect-types"/> for details about how various forms of OpenPGP material are expected to be structured.</t>

<section anchor="version"><name>version: Version Information</name>

<figure><artwork><![CDATA[
sop version [--backend|--extended|--sop-spec]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: ignored</t>
  <t>Standard Output: version information</t>
</list></t>

<t>This subcommand emits version information as UTF-8-encoded text.</t>

<t>With no arguments, the version string emitted should contain the name of the <spanx style="verb">sop</spanx> implementation, followed by a single space, followed by the version number.
A <spanx style="verb">sop</spanx> implementation should use a version number that respects an established standard that is easily comparable and parsable, like <xref target="SEMVER"></xref>.</t>

<t>If <spanx style="verb">--backend</spanx> is supplied, the implementation should produce a comparable line of implementation and version information about the primary underlying OpenPGP toolkit.</t>

<t>If <spanx style="verb">--extended</spanx> is supplied, the implementation may emit multiple lines of version information.
The first line <bcp14>MUST</bcp14> match the information produced by a simple invocation, but the rest of the text has no defined structure.</t>

<t>If <spanx style="verb">--sop-spec</spanx> is supplied, the implementation should emit a single line of text indicating the latest version of this draft that it targets, for example, <spanx style="verb">draft-dkg-openpgp-stateless-cli-06</spanx>.
If the implementation targets a specific draft but the implementer knows the implementation is incomplete, it should prefix the draft title with a <u>~</u>, for example: <spanx style="verb">~draft-dkg-openpgp-stateless-cli-06</spanx>.
The implementation <bcp14>MAY</bcp14> emit additional text about its relationship to the targeted draft on the lines following the versioned title.</t>

<t><spanx style="verb">--backend</spanx>, <spanx style="verb">--extended</spanx>, and <spanx style="verb">--sop-spec</spanx> are mutually-exclusive options.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop version
ExampleSop 0.2.1
$ sop version --backend
LibExamplePGP 3.4.2
$ sop version --extended
ExampleSop 0.2.1
Running on MonkeyScript 4.5
LibExamplePGP 3.4.2
LibExampleCrypto 3.1.1
LibXCompression 4.0.2
See https://pgp.example/sop/ for more information
$ sop version --sop-spec
~draft-dkg-openpgp-stateless-cli-06

This implementation does not handle @FD: special designators for output.
$
]]></artwork></figure>

</section>
<section anchor="list-profiles"><name>list-profiles: Describe Available Profiles</name>

<figure><artwork><![CDATA[
sop list-profiles SUBCOMMAND
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: ignored</t>
  <t>Standard Output: PROFILELIST (<xref target="profilelist"/>)</t>
</list></t>

<t>This subcommand emits a list of profiles supported by the identified subcommand.</t>

<t>If the indicated <spanx style="verb">SUBCOMMAND</spanx> does not accept a <spanx style="verb">--profile</spanx> option, it returns <spanx style="verb">UNSUPPORTED_PROFILE</spanx>.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop list-profiles generate-key
default: use the implementer's recommendations
rfc4880: use algorithms from RFC 4880
$
]]></artwork></figure>

</section>
<section anchor="generate-key"><name>generate-key: Generate a Secret Key</name>

<figure><artwork><![CDATA[
sop generate-key [--no-armor]
    [--with-key-password=PASSWORD]
    [--profile=PROFILE]
    [--] [USERID...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: ignored</t>
  <t>Standard Output: <spanx style="verb">KEYS</spanx> (<xref target="keys"/>)</t>
</list></t>

<t>Generate a single default OpenPGP key with zero or more User IDs.</t>

<t>The generated secret key <bcp14>SHOULD</bcp14> be usable for as much of the <spanx style="verb">sop</spanx> functionality as possible.
In particular:</t>

<t><list style="symbols">
  <t>It should be possible to extract an OpenPGP certificate from the key in <spanx style="verb">KEYS</spanx> with <spanx style="verb">sop extract-cert</spanx>.</t>
  <t>The key in <spanx style="verb">KEYS</spanx> should be able to create signatures (with <spanx style="verb">sop sign</spanx>) that are verifiable by using <spanx style="verb">sop verify</spanx> with the extracted certificate.</t>
  <t>The key in <spanx style="verb">KEYS</spanx> should be able to decrypt messages (with <spanx style="verb">sop decrypt</spanx>) that are encrypted by using <spanx style="verb">sop encrypt</spanx> with the extracted certificate.</t>
</list></t>

<t>The detailed internal structure of the certificate is left to the discretion of the <spanx style="verb">sop</spanx> implementation.</t>

<t>If the <spanx style="verb">--with-key-password</spanx> option is supplied, the generated key will be password-protected (locked) with the supplied password.
Note that <spanx style="verb">PASSWORD</spanx> is an indirect data type from which the actual password is acquired (<xref target="indirect-types"/>).
See also the guidance on ensuring that the password is human-readable in <xref target="generating-human-readable"/>.</t>

<t>If the <spanx style="verb">--profile</spanx> argument is supplied and the indicated <spanx style="verb">PROFILE</spanx> is not supported by the implementation, <spanx style="verb">sop</spanx> will fail with <spanx style="verb">UNSUPPORTED_PROFILE</spanx>.</t>

<t>If no <spanx style="verb">--with-key-password</spanx> option is supplied, the generated key will be unencrypted.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop generate-key 'Alice Lovelace <alice@openpgp.example>' > alice.sec
$ head -n1 < alice.sec
-----BEGIN PGP PRIVATE KEY BLOCK-----
$
]]></artwork></figure>

</section>
<section anchor="extract-cert"><name>extract-cert: Extract a Certificate from a Secret Key</name>

<figure><artwork><![CDATA[
sop extract-cert [--no-armor]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">KEYS</spanx> (<xref target="keys"/>)</t>
  <t>Standard Output: <spanx style="verb">CERTS</spanx> (<xref target="certs"/>)</t>
</list></t>

<t>The output should contain one OpenPGP certificate in <spanx style="verb">CERTS</spanx> per OpenPGP Transferable Secret Key found in <spanx style="verb">KEYS</spanx>.
There is no guarantee what order the <spanx style="verb">CERTS</spanx> will be in.</t>

<t><spanx style="verb">sop extract-cert</spanx> <bcp14>SHOULD</bcp14> work even if any of the keys in <spanx style="verb">KEYS</spanx> is password-protected.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop extract-cert < alice.sec > alice.pgp
$ head -n1 < alice.pgp
-----BEGIN PGP PUBLIC KEY BLOCK-----
$
]]></artwork></figure>

</section>
<section anchor="sign"><name>sign: Create Detached Signatures</name>

<figure><artwork><![CDATA[
sop sign [--no-armor] [--micalg-out=MICALG]
     [--with-key-password=PASSWORD...]
     [--as={binary|text}] [--] KEYS [KEYS...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">DATA</spanx> (<xref target="data"/>)</t>
  <t>Standard Output: <spanx style="verb">SIGNATURES</spanx> (<xref target="signature"/>)</t>
</list></t>

<t>Exactly one signature will be made by each key in the supplied <spanx style="verb">KEYS</spanx> arguments.</t>

<t><spanx style="verb">--as</spanx> defaults to <spanx style="verb">binary</spanx>.  If <spanx style="verb">--as=text</spanx> and the input <spanx style="verb">DATA</spanx> is
not valid <spanx style="verb">UTF-8</spanx> (<xref target="utf8"/>), <spanx style="verb">sop sign</spanx> fails with <spanx style="verb">EXPECTED_TEXT</spanx>.</t>

<t><spanx style="verb">--as=binary</spanx> <bcp14>SHOULD</bcp14> result in OpenPGP signatures of type 0x00 ("Signature of a binary document").
<spanx style="verb">--as=text</spanx> <bcp14>SHOULD</bcp14> result in OpenPGP signatures of type 0x01 ("Signature of a canonical text document").
See <xref section="5.2.1" sectionFormat="of" target="RFC4880"/> for more details.</t>

<t>When generating PGP/MIME messages (<xref target="RFC3156"/>), it is useful to know what digest algorithm was used for the generated signature.
When <spanx style="verb">--micalg-out</spanx> is supplied, <spanx style="verb">sop sign</spanx> emits the digest algorithm used to the specified <spanx style="verb">MICALG</spanx> file in a way that can be used to populate the <spanx style="verb">micalg</spanx> parameter for the Content-Type (see <xref target="micalg"/>).
If the specified <spanx style="verb">MICALG</spanx> file already exists in the filesystem, <spanx style="verb">sop sign</spanx> will fail with <spanx style="verb">OUTPUT_EXISTS</spanx>.</t>

<t>When signing with multiple keys, <spanx style="verb">sop sign</spanx> <bcp14>SHOULD</bcp14> use the same digest algorithm for every signature generated in a single run, unless there is some internal constraint on the <spanx style="verb">KEYS</spanx> objects.
If <spanx style="verb">--micalg-out</spanx> is requested, and multiple incompatibly-constrained <spanx style="verb">KEYS</spanx> objects are supplied, <spanx style="verb">sop sign</spanx> <bcp14>MUST</bcp14> emit the empty string to the designated <spanx style="verb">MICALG</spanx>.</t>

<t>If the signing key material in any key in the <spanx style="verb">KEYS</spanx> objects is password-protected, <spanx style="verb">sop sign</spanx> <bcp14>SHOULD</bcp14> try all supplied <spanx style="verb">--with-key-password</spanx> options to unlock the key material until it finds one that enables the use of the key for signing.
If none of the <spanx style="verb">PASSWORD</spanx> options unlock the key (or if no such option is supplied), <spanx style="verb">sop sign</spanx> will fail with <spanx style="verb">KEY_IS_PROTECTED</spanx>.
Note that <spanx style="verb">PASSWORD</spanx> is an indirect data type from which the actual password is acquired (<xref target="indirect-types"/>).
Note also the guidance for retrying variants of a non-human-readable password in <xref target="consuming-passwords"/>.</t>

<t>If any key in the <spanx style="verb">KEYS</spanx> objects is not capable of producing a signature, <spanx style="verb">sop sign</spanx> will fail with <spanx style="verb">KEY_CANNOT_SIGN</spanx>.</t>

<t><spanx style="verb">sop sign</spanx> <bcp14>MUST NOT</bcp14> produce any extra signatures beyond those from <spanx style="verb">KEYS</spanx> objects supplied on the command line.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop sign --as=text alice.sec < message.txt > message.txt.asc
$ head -n1 < message.txt.asc
-----BEGIN PGP SIGNATURE-----
$
]]></artwork></figure>

</section>
<section anchor="verify"><name>verify: Verify Detached Signatures</name>

<figure><artwork><![CDATA[
sop verify [--not-before=DATE] [--not-after=DATE]
    [--] SIGNATURES CERTS [CERTS...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">DATA</spanx> (<xref target="data"/>)</t>
  <t>Standard Output: <spanx style="verb">VERIFICATIONS</spanx> (<xref target="verifications"/>)</t>
</list></t>

<t><spanx style="verb">--not-before</spanx> and <spanx style="verb">--not-after</spanx> indicate that signatures with dates outside certain range <bcp14>MUST NOT</bcp14> be considered valid.</t>

<t><spanx style="verb">--not-before</spanx> defaults to the beginning of time.
Accepts the special value <spanx style="verb">-</spanx> to indicate the beginning of time (i.e. no lower boundary).</t>

<t><spanx style="verb">--not-after</spanx> defaults to the current system time (<spanx style="verb">now</spanx>).
Accepts the special value <spanx style="verb">-</spanx> to indicate the end of time (i.e. no upper boundary).</t>

<t><spanx style="verb">sop verify</spanx> only returns <spanx style="verb">OK</spanx> if at least one certificate included in any <spanx style="verb">CERTS</spanx> object made a valid signature in the time window specified over the <spanx style="verb">DATA</spanx> supplied.</t>

<t>For details about the valid signatures, the user <bcp14>MUST</bcp14> inspect the <spanx style="verb">VERIFICATIONS</spanx> output.</t>

<t>If no <spanx style="verb">CERTS</spanx> are supplied, <spanx style="verb">sop verify</spanx> fails with <spanx style="verb">MISSING_ARG</spanx>.</t>

<t>If no valid signatures are found, <spanx style="verb">sop verify</spanx> fails with <spanx style="verb">NO_SIGNATURE</spanx>.</t>

<t>See <xref target="signature-verification"/> for more details about signature verification.</t>

<t>Example:</t>

<t>(In this example, we see signature verification succeed first, and then fail on a modified version of the message.)</t>

<figure><artwork><![CDATA[
$ sop verify message.txt.asc alice.pgp < message.txt
2019-10-29T18:36:45Z EB85BB5FA33A75E15E944E63F231550C4F47E38E EB85BB5FA33A75E15E944E63F231550C4F47E38E mode:text signed by alice.pgp
$ echo $?
0
$ tr a-z A-Z < message.txt | sop verify message.txt.asc alice.pgp
$ echo $?
3
$
]]></artwork></figure>

</section>
<section anchor="encrypt"><name>encrypt: Encrypt a Message</name>

<figure><artwork><![CDATA[
sop encrypt [--as={binary|text}]
    [--no-armor]
    [--with-password=PASSWORD...]
    [--sign-with=KEYS...]
    [--with-key-password=PASSWORD...]
    [--profile=PROFILE]
    [--] [CERTS...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">DATA</spanx> (<xref target="data"/>)</t>
  <t>Standard Output: <spanx style="verb">CIPHERTEXT</spanx> (<xref target="ciphertext"/>)</t>
</list></t>

<t><spanx style="verb">--as</spanx> defaults to <spanx style="verb">binary</spanx>.
The setting of <spanx style="verb">--as</spanx> corresponds to the one octet format field found in the Literal Data packet at the core of the output <spanx style="verb">CIPHERTEXT</spanx>.
If <spanx style="verb">--as</spanx> is set to <spanx style="verb">binary</spanx>, the octet is <spanx style="verb">b</spanx> (<spanx style="verb">0x62</spanx>).
If it is <spanx style="verb">text</spanx>, the format octet is <spanx style="verb">u</spanx> (<spanx style="verb">0x75</spanx>).</t>

<t><spanx style="verb">--with-password</spanx> enables symmetric encryption (and can be used multiple times if multiple passwords are desired).</t>

<t><spanx style="verb">--sign-with</spanx> creates exactly one signature by for each secret key found in the supplied <spanx style="verb">KEYS</spanx> object (this can also be used multiple times if signatures from keys found in separaate files are desired).
If any key in any supplied <spanx style="verb">KEYS</spanx> object is not capable of producing a signature, <spanx style="verb">sop sign</spanx> will fail with <spanx style="verb">KEY_CANNOT_SIGN</spanx>.
If any signing key material in any supplied <spanx style="verb">KEYS</spanx> object is password-protected, <spanx style="verb">sop encrypt</spanx> <bcp14>SHOULD</bcp14> try all supplied <spanx style="verb">--with-key-password</spanx> options to unlock the key material until it finds one that enables the use of the key for signing.
If none of the <spanx style="verb">--with-key-password=PASSWORD</spanx> options can unlock any locked signing key material (or if no such option is supplied), <spanx style="verb">sop encrypt</spanx> will fail with <spanx style="verb">KEY_IS_PROTECTED</spanx>.
All signatures made must be placed inside the encryption produced by <spanx style="verb">sop encrypt</spanx>.</t>

<t>Note that both <spanx style="verb">--with-password</spanx> and <spanx style="verb">--with-key-password</spanx> supply <spanx style="verb">PASSWORD</spanx> arguments, but they do so in different contexts which are not interchangeable.
A <spanx style="verb">PASSWORD</spanx> supplied for symmetric encryption (<spanx style="verb">--with-password</spanx>) <bcp14>MUST NOT</bcp14> be used to try to unlock a signing key (<spanx style="verb">--with-key-password</spanx>) and a <spanx style="verb">PASSWORD</spanx> supplied to unlock a signing key <bcp14>MUST NOT</bcp14> be used to symmetrically encrypt the message.
Regardless of context, each <spanx style="verb">PASSWORD</spanx> argument is presented as an indirect data type from which the actual password is acquired (<xref target="indirect-types"/>).
If <spanx style="verb">sop encrypt</spanx> encounters a password which is not a valid <spanx style="verb">UTF-8</spanx> string (<xref target="utf8"/>), or is otherwise not robust in its representation to humans,
it fails with <spanx style="verb">PASSWORD_NOT_HUMAN_READABLE</spanx>.
If <spanx style="verb">sop encrypt</spanx> sees trailing whitespace at the end of a password,
it will trim the trailing whitespace before using the password.
See <xref target="human-readable-passwords"/> for more discussion about passwords.</t>

<t>If <spanx style="verb">--as</spanx> is set to <spanx style="verb">binary</spanx>, then <spanx style="verb">--sign-with</spanx> will sign as a binary document (OpenPGP signature type <spanx style="verb">0x00</spanx>).</t>

<t>If <spanx style="verb">--as</spanx> is set to <spanx style="verb">text</spanx>, then <spanx style="verb">--sign-with</spanx> will sign as a canonical text document (OpenPGP signature type <spanx style="verb">0x01</spanx>).
In this case, if the input <spanx style="verb">DATA</spanx> is not valid <spanx style="verb">UTF-8</spanx>  (<xref target="utf8"/>), <spanx style="verb">sop encrypt</spanx> fails with <spanx style="verb">EXPECTED_TEXT</spanx>.</t>

<t>If <spanx style="verb">--sign-with</spanx> is supplied for input <spanx style="verb">DATA</spanx> that is not valid <spanx style="verb">UTF-8</spanx>, <spanx style="verb">sop encrypt</spanx> <bcp14>MAY</bcp14> sign as a binary document (OpenPGP signature type <spanx style="verb">0x00</spanx>).</t>

<t><spanx style="verb">sop encrypt</spanx> <bcp14>MUST NOT</bcp14> produce any extra signatures beyond those from <spanx style="verb">KEYS</spanx> objects identified by <spanx style="verb">--sign-with</spanx>.</t>

<t>The resulting <spanx style="verb">CIPHERTEXT</spanx> should be decryptable by the secret keys corresponding to every certificate included in all <spanx style="verb">CERTS</spanx>, as well as each password given with <spanx style="verb">--with-password</spanx>.</t>

<t>If no <spanx style="verb">CERTS</spanx> or <spanx style="verb">--with-password</spanx> options are present, <spanx style="verb">sop encrypt</spanx> fails with <spanx style="verb">MISSING_ARG</spanx>.</t>

<t>If at least one of the identified certificates requires encryption to an unsupported asymmetric algorithm, <spanx style="verb">sop encrypt</spanx> fails with <spanx style="verb">UNSUPPORTED_ASYMMETRIC_ALGO</spanx>.</t>

<t>If at least one of the identified certificates is not encryption-capable (e.g., revoked, expired, no encryption-capable flags on primary key and valid subkeys), <spanx style="verb">sop encrypt</spanx> fails with <spanx style="verb">CERT_CANNOT_ENCRYPT</spanx>.</t>

<t>If the <spanx style="verb">--profile</spanx> argument is supplied and the indicated <spanx style="verb">PROFILE</spanx> is not supported by the implementation, <spanx style="verb">sop</spanx> will fail with <spanx style="verb">UNSUPPORTED_PROFILE</spanx>.
The use of a profile for this subcommand allows an implementation faced with parametric or algorithmic choices to make a decision coarsely guided by the operator.
For example, when encrypting with a password, there is no knowledge about the capabilities of the recipient, and an implementation may prefer cryptographically modern algorithms, or it may prefer more broad compatibility.
In the event that a known recipient (i.e., one of the <spanx style="verb">CERTS</spanx>) explicitly indicates a lack of support for one of the features preferred by the indicated profile, the implementation <bcp14>SHOULD</bcp14> conform to the recipient's advertised capabilities where possible.</t>

<t>If <spanx style="verb">sop encrypt</spanx> fails for any reason, it emits no <spanx style="verb">CIPHERTEXT</spanx>.</t>

<t>Example:</t>

<t>(In this example, <spanx style="verb">bob.bin</spanx> is a file containing Bob's binary-formatted OpenPGP certificate.
Alice is encrypting a message to both herself and Bob.)</t>

<figure><artwork><![CDATA[
$ sop encrypt --as=text --sign-with=alice.key alice.asc bob.bin < message.eml > encrypted.asc
$ head -n1 encrypted.asc
-----BEGIN PGP MESSAGE-----
$
]]></artwork></figure>

</section>
<section anchor="decrypt"><name>decrypt: Decrypt a Message</name>

<figure><artwork><![CDATA[
sop decrypt [--session-key-out=SESSIONKEY]
    [--with-session-key=SESSIONKEY...]
    [--with-password=PASSWORD...]
    [--with-key-password=PASSWORD...]
    [--verifications-out=VERIFICATIONS
     [--verify-with=CERTS...]
     [--verify-not-before=DATE]
     [--verify-not-after=DATE] ]
    [--] [KEYS...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">CIPHERTEXT</spanx> (<xref target="ciphertext"/>)</t>
  <t>Standard Output: <spanx style="verb">DATA</spanx> (<xref target="data"/>)</t>
</list></t>

<t>The caller can ask <spanx style="verb">sop</spanx> for the session key discovered during decryption by supplying the <spanx style="verb">--session-key-out</spanx> option.
If the specified file already exists in the filesystem, <spanx style="verb">sop decrypt</spanx> will fail with <spanx style="verb">OUTPUT_EXISTS</spanx>.
When decryption is successful, <spanx style="verb">sop decrypt</spanx> writes the discovered session key to the specified file.</t>

<t><spanx style="verb">--with-session-key</spanx> enables decryption of the <spanx style="verb">CIPHERTEXT</spanx> using the session key directly against the <spanx style="verb">SEIPD</spanx> packet.
This option can be used multiple times if several possible session keys should be tried.
<spanx style="verb">SESSIONKEY</spanx> is an indirect data type from which the actual <spanx style="verb">sessionkey</spanx> value is acquired (<xref target="indirect-types"/>).</t>

<t><spanx style="verb">--with-password</spanx> enables decryption based on any <spanx style="verb">SKESK</spanx> (<xref section="5.3" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>) packets in the <spanx style="verb">CIPHERTEXT</spanx>.
This option can be used multiple times if the user wants to try more than one password.</t>

<t><spanx style="verb">--with-key-password</spanx> lets the user use password-protected (locked) secret key material.
If the decryption-capable secret key material in any key in the <spanx style="verb">KEYS</spanx> objects is password-protected, <spanx style="verb">sop decrypt</spanx> <bcp14>SHOULD</bcp14> try all supplied <spanx style="verb">--with-key-password</spanx> options to unlock the key material until it finds one that enables the use of the key for decryption.
If none of the <spanx style="verb">--with-key-password</spanx> options unlock the key (or if no such option is supplied), and the message cannot be decrypted with any other <spanx style="verb">KEYS</spanx>, <spanx style="verb">--with-session-key</spanx>, or <spanx style="verb">--with-password</spanx> options, <spanx style="verb">sop decrypt</spanx> will fail with <spanx style="verb">KEY_IS_PROTECTED</spanx>.</t>

<t>Note that the two kinds of <spanx style="verb">PASSWORD</spanx> options are for different domains: <spanx style="verb">--with-password</spanx> is for unlocking an <spanx style="verb">SKESK</spanx>, and <spanx style="verb">--with-key-password</spanx> is for unlocking secret key material in <spanx style="verb">KEYS</spanx>.
<spanx style="verb">sop decrypt</spanx> <bcp14>SHOULD NOT</bcp14> apply the <spanx style="verb">--with-key-password</spanx> argument to any <spanx style="verb">SKESK</spanx>, or the <spanx style="verb">--with-password</spanx> argument to any <spanx style="verb">KEYS</spanx>.</t>

<t>Each <spanx style="verb">PASSWORD</spanx> argument is an indirect data type from which the actual password is acquired (<xref target="indirect-types"/>).
If <spanx style="verb">sop decrypt</spanx> tries and fails to use a password supplied by a <spanx style="verb">PASSWORD</spanx>,
and it observes that there is trailing <spanx style="verb">UTF-8</spanx> whitespace at the end of the password,
it will retry with the trailing whitespace stripped.
See <xref target="consuming-passwords"/> for more discussion about consuming password-protected key material.</t>

<t><spanx style="verb">--verifications-out</spanx> produces signature verification status to the designated file.
If the designated file already exists in the filesystem, <spanx style="verb">sop decrypt</spanx> will fail with <spanx style="verb">OUTPUT_EXISTS</spanx>.</t>

<t>The return code of <spanx style="verb">sop decrypt</spanx> is not affected by the results of signature verification.
The caller <bcp14>MUST</bcp14> check the returned <spanx style="verb">VERIFICATIONS</spanx> to confirm signature status.
An empty <spanx style="verb">VERIFICATIONS</spanx> output indicates that no valid signatures were found.</t>

<t><spanx style="verb">--verify-with</spanx> identifies a set of certificates whose signatures would be acceptable for signatures over this message.</t>

<t>If the caller is interested in signature verification, both <spanx style="verb">--verifications-out</spanx> and at least one <spanx style="verb">--verify-with</spanx> must be supplied.
If only one of these options is supplied, <spanx style="verb">sop decrypt</spanx> fails with <spanx style="verb">INCOMPLETE_VERIFICATION</spanx>.</t>

<t><spanx style="verb">--verify-not-before</spanx> and <spanx style="verb">--verify-not-after</spanx> provide a date range for acceptable signatures,
by analogy with the options for <spanx style="verb">sop verify</spanx> (see <xref target="verify"/>).
They should only be supplied when doing signature verification.</t>

<t>See <xref target="signature-verification"/> for more details about signature verification.</t>

<t>If no <spanx style="verb">KEYS</spanx> or <spanx style="verb">--with-password</spanx> or <spanx style="verb">--with-session-key</spanx> options are present, <spanx style="verb">sop decrypt</spanx> fails with <spanx style="verb">MISSING_ARG</spanx>.</t>

<t>If unable to decrypt, <spanx style="verb">sop decrypt</spanx> fails with <spanx style="verb">CANNOT_DECRYPT</spanx>.</t>

<t><spanx style="verb">sop decrypt</spanx> only emits cleartext to Standard Output that was successfully decrypted.</t>

<t>Example:</t>

<t>(In this example, Alice stashes and re-uses the session key of an encrypted message.)</t>

<figure><artwork><![CDATA[
$ sop decrypt --session-key-out=session.key alice.sec < ciphertext.asc > cleartext.out
$ ls -l ciphertext.asc cleartext.out
-rw-r--r-- 1 user user   321 Oct 28 01:34 ciphertext.asc
-rw-r--r-- 1 user user   285 Oct 28 01:34 cleartext.out
$ sop decrypt --with-session-key=session.key < ciphertext.asc > cleartext2.out
$ diff cleartext.out cleartext2.out
$
]]></artwork></figure>

<section anchor="historic-options-for-sop-decrypt"><name>Historic Options for sop decrypt</name>

<t>The <spanx style="verb">sop decrypt</spanx> option <spanx style="verb">--verifications-out</spanx> used to be named <spanx style="verb">--verify-out</spanx>.
An implementation <bcp14>SHOULD</bcp14> accept either form of this option, and <bcp14>SHOULD</bcp14> produce a deprecation warning to standard error if the old form is used.</t>

</section>
</section>
<section anchor="armor-convert-binary-to-ascii"><name>armor: Convert Binary to ASCII</name>

<figure><artwork><![CDATA[
sop armor [--label={auto|sig|key|cert|message}]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: OpenPGP material (<spanx style="verb">SIGNATURES</spanx>, <spanx style="verb">KEYS</spanx>, <spanx style="verb">CERTS</spanx>, <spanx style="verb">CIPHERTEXT</spanx>, or <spanx style="verb">INLINESIGNED</spanx>)</t>
  <t>Standard Output: the same material with ASCII-armoring added, if not already present</t>
</list></t>

<t>The user can choose to specify the label used in the header and tail of the armoring.</t>

<t>The default for <spanx style="verb">--label</spanx> is <spanx style="verb">auto</spanx>, in which case, <spanx style="verb">sop</spanx> inspects the input and chooses the label appropriately, based on the OpenPGP packets encountered.
If the type of the first OpenPGP packet is:</t>

<t><list style="symbols">
  <t><spanx style="verb">0x05</spanx> (Secret-Key), the packet stream should be parsed as a <spanx style="verb">KEYS</spanx> input (with Armor Header <spanx style="verb">BEGIN PGP PRIVATE KEY BLOCK</spanx>).</t>
  <t><spanx style="verb">0x06</spanx> (Public-Key), the packet stream should be parsed as a <spanx style="verb">CERTS</spanx> input (with Armor Header <spanx style="verb">BEGIN PGP PUBLIC KEY BLOCK</spanx>).</t>
  <t><spanx style="verb">0x01</spanx> (Public-key Encrypted Session Key) or <spanx style="verb">0x03</spanx> (Symmetric-key Encrypted Session Key), the packet stream should be parsed as a <spanx style="verb">CIPHERTEXT</spanx> input (with Armor Header <spanx style="verb">BEGIN PGP MESSAGE</spanx>).</t>
  <t><spanx style="verb">0x04</spanx> (One-Pass Signature), the packet stream should be parsed as an <spanx style="verb">INLINESIGNED</spanx> input (with Armor Header <spanx style="verb">BEGIN PGP MESSAGE</spanx>).</t>
  <t><spanx style="verb">0x02</spanx> (Signature), the packet stream may be either a <spanx style="verb">SIGNATURES</spanx> input or an <spanx style="verb">INLINESIGNED</spanx> input.
If the packet stream contains only Signature packets, it should be parsed as a<spanx style="verb">SIGNATURES</spanx> input (with Armor Header <spanx style="verb">BEGIN PGP SIGNATURE</spanx>).
If it contains any packet other than a Signature packet, it should be parsed as an <spanx style="verb">INLINESIGNED</spanx> input (with Armor Header <spanx style="verb">BEGIN PGP MESSAGE</spanx>).</t>
</list></t>

<t>If the input packet stream does not match the expected sequence of packet types, <spanx style="verb">sop armor</spanx> fails with <spanx style="verb">BAD_DATA</spanx>.</t>

<t>Note that <spanx style="verb">--label=message</spanx> may be used for either <spanx style="verb">INLINESIGNED</spanx> or <spanx style="verb">CIPHERTEXT</spanx> inputs.</t>

<t>Since <spanx style="verb">sop armor</spanx> accepts ASCII-armored input as well as binary input, this operation is idempotent on well-structured data.
A caller can use this subcommand blindly to ensure that any well-formed OpenPGP packet stream is 7-bit clean.</t>

<t>FIXME: what to do if the input is a CSF <spanx style="verb">INLINESIGNED</spanx> message?
Three choices:</t>

<t><list style="symbols">
  <t>Leave it untouched -- this violates the claim about blindly ensuring 7-bit clean, since UTF-8-encoded message text is not necessarily 7-bit clean.</t>
  <t>Convert to ASCII-armored <spanx style="verb">INLINESIGNED</spanx> -- this requires synthesis of OPS packet (from the CSF <spanx style="verb">Hash</spanx> header) and Literal Data packet (from the message body).</t>
  <t>Raise a specific error.</t>
</list></t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop armor < bob.bin > bob.pgp
$ head -n1 bob.pgp
-----BEGIN PGP PUBLIC KEY BLOCK-----
$
]]></artwork></figure>

</section>
<section anchor="dearmor-convert-ascii-to-binary"><name>dearmor: Convert ASCII to Binary</name>

<figure><artwork><![CDATA[
sop dearmor
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: OpenPGP material (<spanx style="verb">SIGNATURES</spanx>, <spanx style="verb">KEYS</spanx>, <spanx style="verb">CERTS</spanx>, <spanx style="verb">CIPHERTEXT</spanx>, or <spanx style="verb">INLINESIGNED</spanx>)</t>
  <t>Standard Output: the same material with any ASCII-armoring removed</t>
</list></t>

<t>If the input packet stream does not match any of the expected sequence of packet types, <spanx style="verb">sop dearmor</spanx> fails with <spanx style="verb">BAD_DATA</spanx>.  See also <xref target="optional-input-armoring"/>.</t>

<t>Since <spanx style="verb">sop dearmor</spanx> accepts binary-formatted input as well as ASCII-armored input, this operation is idempotent on well-structured data.
A caller can use this subcommand blindly ensure that any well-formed OpenPGP packet stream is in its standard binary representation.</t>

<t>FIXME: what to do if the input is a CSF <spanx style="verb">INLINESIGNED</spanx>?
Three choices:</t>

<t><list style="symbols">
  <t>Leave it untouched -- output data is not really in binary format.</t>
  <t>Convert to binary-format <spanx style="verb">INLINESIGNED</spanx> -- this requires synthesis of OPS packet (from CSF <spanx style="verb">Hash</spanx> header) and Literal Data packet (from the message body).</t>
  <t>Raise a specific error.</t>
</list></t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop dearmor < message.txt.asc > message.txt.sig
$
]]></artwork></figure>

</section>
<section anchor="inline-detach"><name>inline-detach: Split Signatures from an Inline-Signed Message</name>

<figure><artwork><![CDATA[
sop inline-detach [--no-armor] --signatures-out=SIGNATURES
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">INLINESIGNED</spanx></t>
  <t>Standard Output: <spanx style="verb">DATA</spanx> (the message without any signatures)</t>
</list></t>

<t>In some contexts, the user may expect an inline-signed message of some form or another (<spanx style="verb">INLINESIGNED</spanx>, see <xref target="inlinesigned"/>) rather than a message and its detached signature.
<spanx style="verb">sop inline-detach</spanx> takes such an inline-signed message on standard input, and splits it into:</t>

<t><list style="symbols">
  <t>the potentially signed material on standard output, and</t>
  <t>a detached signature block to the destination identified by <spanx style="verb">--signatures-out</spanx></t>
</list></t>

<t>Note that no cryptographic verification of the signatures is done by this subcommand.
Once the inline-signed message is separated, verification of the detached signature can be done with <spanx style="verb">sop verify</spanx>.</t>

<t>If no <spanx style="verb">--signatures-out</spanx> is supplied, <spanx style="verb">sop inline-detach</spanx> fails with <spanx style="verb">MISSING_ARG</spanx>.</t>

<t>Note that there may be more than one Signature packet in an inline-signed message.
All signatures found in the inline-signed message will be emitted to the <spanx style="verb">--signatures-out</spanx> destination.</t>

<t>If the inline-signed message uses the Cleartext Signature Framework, it may be dash-escaped (see <xref section="7.1" sectionFormat="of" target="RFC4880"/>).
The output of <spanx style="verb">sop detach-inband-signature-and-message</spanx> will have any dash-escaping removed.</t>

<t>If the input is not an <spanx style="verb">INLINESIGNED</spanx> message, <spanx style="verb">sop inline-detach</spanx> fails with <spanx style="verb">BAD_DATA</spanx>.
If the input contains more than one object that could be interpreted as an <spanx style="verb">INLINESIGNED</spanx> message, <spanx style="verb">sop inline-detach</spanx> also fails with <spanx style="verb">BAD_DATA</spanx>.
A <spanx style="verb">sop</spanx> implementation <bcp14>MAY</bcp14> accept (and discard) leading and trailing data when the incoming <spanx style="verb">INLINESIGNED</spanx> message uses the Cleartext Signature Framework.</t>

<t>If the file designated by <spanx style="verb">--signatures-out</spanx> already exists in the filesystem, <spanx style="verb">sop detach-inband-signature-and-message</spanx> will fail with <spanx style="verb">OUTPUT_EXISTS</spanx>.</t>

<t>Note that <spanx style="verb">--no-armor</spanx> here governs the data written to the <spanx style="verb">--signatures-out</spanx> destination.
Standard output is always the raw message, not an OpenPGP packet.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop inline-detach --signatures-out=Release.pgp < InRelease >Release
$ sop verify Release.pgp archive-keyring.pgp < Release
$
]]></artwork></figure>

</section>
<section anchor="inline-verify"><name>inline-verify: Verify an Inline-Signed Message</name>

<figure><artwork><![CDATA[
sop inline-verify [--not-before=DATE] [--not-after=DATE]
    [--verifications-out=VERIFICATIONS]
    [--] CERTS [CERTS...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">INLINESIGNED</spanx> (<xref target="inlinesigned"/>)</t>
  <t>Standard Output: <spanx style="verb">DATA</spanx> (<xref target="data"/>)</t>
</list></t>

<t>This command is similar to <spanx style="verb">sop verify</spanx> (<xref target="verify"/>) except that it takes an <spanx style="verb">INLINESIGNED</spanx> message (see <xref target="inlinesigned"/>) and produces the message body (without signatures) on standard output.
It is also similar to <spanx style="verb">sop inline-detach</spanx> (<xref target="inline-detach"/>) except that it actually performs signature verification.</t>

<t><spanx style="verb">--not-before</spanx> and <spanx style="verb">--not-after</spanx> indicate that signatures with dates outside certain range <bcp14>MUST NOT</bcp14> be considered valid.</t>

<t><spanx style="verb">--not-before</spanx> defaults to the beginning of time.
Accepts the special value <spanx style="verb">-</spanx> to indicate the beginning of time (i.e. no lower boundary).</t>

<t><spanx style="verb">--not-after</spanx> defaults to the current system time (<spanx style="verb">now</spanx>).
Accepts the special value <spanx style="verb">-</spanx> to indicate the end of time (i.e. no upper boundary).</t>

<t><spanx style="verb">sop inline-verify</spanx> only returns <spanx style="verb">OK</spanx> if <spanx style="verb">INLINESIGNED</spanx> contains at least one valid signature made during the time window specified by a certificate included in any <spanx style="verb">CERTS</spanx> object.</t>

<t>For details about the valid signatures, the user <bcp14>MUST</bcp14> inspect the <spanx style="verb">VERIFICATIONS</spanx> output.</t>

<t>If no <spanx style="verb">CERTS</spanx> are supplied, <spanx style="verb">sop inline-verify</spanx> fails with <spanx style="verb">MISSING_ARG</spanx>.</t>

<t>If no valid signatures are found, <spanx style="verb">sop inline-verify</spanx> fails with <spanx style="verb">NO_SIGNATURE</spanx> and emits nothing on standard output.</t>

<t>See <xref target="signature-verification"/> for more details about signature verification.</t>

<t>Example:</t>

<t>(In this example, we see signature verification succeed first, and then fail on a modified version of the message.)</t>

<figure><artwork><![CDATA[
$ sop inline-verify -- alice.pgp < message.txt
Hello, world!
$ echo $?
0
$ sed s/Hello/Goodbye/ < message.txt | sop inline-verify -- alice.pgp
$ echo $?
3
$
]]></artwork></figure>

</section>
<section anchor="inline-sign"><name>inline-sign: Create an Inline-Signed Message</name>

<figure><artwork><![CDATA[
sop inline-sign [--no-armor]
     [--with-key-password=PASSWORD...]
     [--as={binary|text|clearsigned}]
     [--] KEYS [KEYS...]
]]></artwork></figure>

<t><list style="symbols">
  <t>Standard Input: <spanx style="verb">DATA</spanx> (<xref target="data"/>)</t>
  <t>Standard Output: <spanx style="verb">INLINESIGNED</spanx> (<xref target="inlinesigned"/>)</t>
</list></t>

<t>Exactly one signature will be made by each key in the supplied <spanx style="verb">KEYS</spanx> arguments.</t>

<t>The generated output stream will be an inline-signed message, by default producing an OpenPGP "Signed Message" packet stream.</t>

<t><spanx style="verb">--as</spanx> defaults to <spanx style="verb">binary</spanx>.
If <spanx style="verb">--as=</spanx> is set to either <spanx style="verb">text</spanx> or <spanx style="verb">clearsigned</spanx>, and the input <spanx style="verb">DATA</spanx> is not valid <spanx style="verb">UTF-8</spanx> (<xref target="utf8"/>), <spanx style="verb">sop inline-sign</spanx> fails with <spanx style="verb">EXPECTED_TEXT</spanx>.</t>

<t><spanx style="verb">--as=binary</spanx> <bcp14>SHOULD</bcp14> result in OpenPGP signatures of type 0x00 ("Signature of a binary document").
<spanx style="verb">--as=text</spanx> <bcp14>SHOULD</bcp14> result in an OpenPGP signature of type 0x01 ("Signature of a canonical text document").
See <xref section="5.2.1" sectionFormat="of" target="RFC4880"/> for more details.
<spanx style="verb">--as=clearsigned</spanx> <bcp14>SHOULD</bcp14> behave the same way as <spanx style="verb">--as=text</spanx> except that it produces an output stream using the Cleartext Signature Framework (see <xref section="7" sectionFormat="of" target="RFC4880"/> and <xref target="csf-risks"/>).</t>

<t>If both <spanx style="verb">--no-armor</spanx> and <spanx style="verb">--as=clearsigned</spanx>  are supplied, <spanx style="verb">sop inline-sign</spanx> fails with <spanx style="verb">INCOMPATIBLE_OPTIONS</spanx>.</t>

<t>If the signing key material in any key in the <spanx style="verb">KEYS</spanx> objects is password-protected, <spanx style="verb">sop inline-sign</spanx> <bcp14>SHOULD</bcp14> try all supplied <spanx style="verb">--with-key-password</spanx> options to unlock the key material until it finds one that enables the use of the key for signing.
If none of the <spanx style="verb">PASSWORD</spanx> options unlock the key (or if no such option is supplied), <spanx style="verb">sop inline-sign</spanx> will fail with <spanx style="verb">KEY_IS_PROTECTED</spanx>.
Note that <spanx style="verb">PASSWORD</spanx> is an indirect data type from which the actual password is acquired (<xref target="indirect-types"/>).
Note also the guidance for retrying variants of a non-human-readable password in <xref target="consuming-passwords"/>.</t>

<t>If any key in the <spanx style="verb">KEYS</spanx> objects is not capable of producing a signature, <spanx style="verb">sop inline-sign</spanx> will fail with <spanx style="verb">KEY_CANNOT_SIGN</spanx>.</t>

<t><spanx style="verb">sop inline-sign</spanx> <bcp14>MUST NOT</bcp14> produce any extra signatures beyond those from <spanx style="verb">KEYS</spanx> objects supplied on the command line.</t>

<t>Example:</t>

<figure><artwork><![CDATA[
$ sop inline-sign --as=clearsigned alice.sec < message.txt > message-signed.txt
$ head -n5 < message-signed.txt
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

This is the message.
-----BEGIN PGP SIGNATURE-----
$
]]></artwork></figure>

</section>
</section>
<section anchor="input-string-types"><name>Input String Types</name>

<t>Some material is passed to <spanx style="verb">sop</spanx> directly as a string on the command line.</t>

<section anchor="date"><name>DATE</name>

<t>An ISO-8601 formatted timestamp with time zone, or the special value <spanx style="verb">now</spanx> to indicate the current system time.</t>

<t>Examples:</t>

<t><list style="symbols">
  <t><spanx style="verb">now</spanx></t>
  <t><spanx style="verb">2019-10-29T12:11:04+00:00</spanx></t>
  <t><spanx style="verb">2019-10-24T23:48:29Z</spanx></t>
  <t><spanx style="verb">20191029T121104Z</spanx></t>
</list></t>

<t>In some cases where used to specify lower and upper boundaries, a <spanx style="verb">DATE</spanx> value can be set to <spanx style="verb">-</spanx> to indicate "no time limit".</t>

<t>A flexible implementation of <spanx style="verb">sop</spanx> <bcp14>MAY</bcp14> accept date inputs in other unambiguous forms.</t>

<t>Note that whenever <spanx style="verb">sop</spanx> emits a timestamp (e.g. in <xref target="verifications"/>) it <bcp14>MUST</bcp14> produce only a UTC-based ISO-8601 compliant representation with a resolution of one second, using the literal <spanx style="verb">Z</spanx> suffix to indicate timezone.</t>

</section>
<section anchor="userid"><name>USERID</name>

<t>This is an arbitrary <spanx style="verb">UTF-8</spanx> string (<xref target="utf8"/>).
By convention, most User IDs are of the form <spanx style="verb">Display Name &lt;email.address@example.com&gt;</spanx>, but they do not need to be.</t>

</section>
<section anchor="subcommand"><name>SUBCOMMAND</name>

<t>This is an <spanx style="verb">ASCII</spanx> string that matches the name of one of the subcommands listed in <xref target="subcommands"/>.</t>

</section>
<section anchor="profile"><name>PROFILE</name>

<t>Some <spanx style="verb">sop</spanx> subcommands can accept a <spanx style="verb">--profile</spanx> option, which takes as an argument the name of a profile.</t>

<t>A profile name is a UTF-8 string that has no whitespace in it.</t>

<t>Which profiles are available depends on the <spanx style="verb">sop</spanx> implementation.</t>

<t>Similar to OpenPGP Notation names, profile names are divided into two namespaces: the IETF namespace and the user namespace.
A profile name in the user namespace ends with the <spanx style="verb">@</spanx> character (0x40) followed by a DNS domain name.
A profile name in the IETF namespace does not have an <spanx style="verb">@</spanx> character.</t>

<t>A profile name in the user space is owned and controlled by the owner of the domain in the suffix.
A <spanx style="verb">sop</spanx> implementation that implements a user profile but does not own the domain in question <bcp14>SHOULD</bcp14> hew as closely as possible to the semantics described by the owner of the domain.</t>

<t>A profile name in the IETF namespace that begins with the string <spanx style="verb">rfc</spanx> should have semantics that hew as closely as possible to the referenced RFC.
Similarly, a profile name in the IETF namespace that begins with the string <spanx style="verb">draft-</spanx> should have semantics that hew as closely as possible to the referenced Internet Draft.</t>

<t>The reserved profile name <spanx style="verb">default</spanx> in the IETF namespace simply refers to the implementation's default choices.</t>

<t>Note that this profile mechanism is intended to provide a limited way for an implementation to select among a small set of options that the implementer has vetted and is satisfied with.
It is not intended to provide an arbitrary channel for complex configuration, and a <spanx style="verb">sop</spanx> implementation <bcp14>MUST NOT</bcp14> use it in that way.</t>

</section>
</section>
<section anchor="indirect-types"><name>Input/Output Indirect Types</name>

<t>Some material is passed to <spanx style="verb">sop</spanx> indirectly, typically by referring to a filename containing the data in question.
This type of data may also be passed to <spanx style="verb">sop</spanx> on Standard Input, or delivered by <spanx style="verb">sop</spanx> to Standard Output.</t>

<t>If any input data is specified explicitly to be read from a file that does not exist, <spanx style="verb">sop</spanx> will fail with <spanx style="verb">MISSING_INPUT</spanx>.</t>

<t>If any input data does not meet the requirements described below, <spanx style="verb">sop</spanx> will fail with <spanx style="verb">BAD_DATA</spanx>.</t>

<section anchor="special-designators"><name>Special Designators for Indirect Types</name>

<t>An indirect argument or parameter that starts with <u>@</u> is not treated as a filename, but is reserved for special handling, based on the prefix that follows the <spanx style="verb">@</spanx>.
We describe two of those prefixes (<spanx style="verb">@ENV:</spanx> and <spanx style="verb">@FD:</spanx>) here.
A <spanx style="verb">sop</spanx> implementation that receives such a special designator but does not know how to handle a given prefix in that context <bcp14>MUST</bcp14> fail with <spanx style="verb">UNSUPPORTED_SPECIAL_PREFIX</spanx>.</t>

<t>If the filename for any indirect material used as input has the special form <spanx style="verb">@ENV:xxx</spanx>,
then contents of environment variable <spanx style="verb">$xxx</spanx> is used instead of looking in the filesystem.
<spanx style="verb">@ENV</spanx> is for input only: if the prefix <spanx style="verb">@ENV:</spanx> is used for any output argument, <spanx style="verb">sop</spanx> fails with <spanx style="verb">UNSUPPORTED_SPECIAL_PREFIX</spanx>.</t>

<t>If the filename for any indirect material used as either input or output has the special form <spanx style="verb">@FD:nnn</spanx> where <spanx style="verb">nnn</spanx> is a decimal integer,
then the associated data is read from file descriptor <spanx style="verb">nnn</spanx>.</t>

<t>See <xref target="special-designators-guidance"/> for more details about safe handling of these special designators.</t>

</section>
<section anchor="certs"><name>CERTS</name>

<t>One or more OpenPGP certificates (<xref section="11.1" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>), aka "Transferable Public Key".
May be armored (see <xref target="optional-input-armoring"/>).</t>

<t>Although some existing workflows may prefer to use one <spanx style="verb">CERTS</spanx> object with multiple certificates in it (a "keyring"), supplying exactly one certificate per <spanx style="verb">CERTS</spanx> input will make error reporting clearer and easier.</t>

</section>
<section anchor="keys"><name>KEYS</name>

<t>One or more OpenPGP Transferable Secret Keys (<xref section="11.2" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>).
May be armored (see <xref target="optional-input-armoring"/>).</t>

<t>Secret key material is often locked with a password to ensure that it cannot be simply copied and reused.
If any secret key material is locked with a password and no <spanx style="verb">--with-key-password</spanx> option is supplied, <spanx style="verb">sop</spanx> may fail with error <spanx style="verb">KEY_IS_PROTECTED</spanx>.
However, when a cleartext secret key (that is, one not locked with a password) is available, <spanx style="verb">sop</spanx> should always be able to use it, whether a <spanx style="verb">--with-key-password</spanx> option is supplied or not.</t>

<t>Although some existing workflows may prefer to use one <spanx style="verb">KEYS</spanx> object with multiple keys in it (a "secret keyring"), supplying exactly one key per <spanx style="verb">KEYS</spanx> input will make error reporting clearer and easier.</t>

</section>
<section anchor="ciphertext"><name>CIPHERTEXT</name>

<t><spanx style="verb">sop</spanx> accepts only a restricted subset of the arbitrarily-nested grammar allowed by the OpenPGP Messages definition (<xref section="11.3" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>).</t>

<t>In particular, it accepts and generates only:</t>

<t>An OpenPGP message, consisting of a sequence of PKESKs (<xref section="5.1" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>) and SKESKs (<xref section="5.3" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>),
followed by one SEIPD (<xref section="5.13" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>).</t>

<t>The SEIPD can decrypt into one of two things:</t>

<t><list style="symbols">
  <t>"Maybe Signed Data" (see below), or</t>
  <t>Compressed data packet that contains "Maybe Signed Data"</t>
</list></t>

<t>"Maybe Signed Data" is a sequence of:</t>

<t><list style="symbols">
  <t>N (zero or more) one-pass signature packets, followed by</t>
  <t>zero or more signature packets, followed by</t>
  <t>one Literal data packet, followed by</t>
  <t>N signature packets (corresponding to the outer one-pass signatures packets)</t>
</list></t>

<t>FIXME: does any tool do compression inside signing?  Do we need to handle that?</t>

<t>May be armored (see <xref target="optional-input-armoring"/>).</t>

</section>
<section anchor="inlinesigned"><name>INLINESIGNED</name>

<t>An inline-signed message may take any one of three different forms:</t>

<t><list style="symbols">
  <t>A binary sequence of OpenPGP packets that matches a subset of the "Signed Message" element in the grammar in <xref section="11.3" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/></t>
  <t>The same sequence of packets, but ASCII-armored (see <xref target="optional-input-armoring"/>)</t>
  <t>A message using the Cleartext Signature Framework described in <xref section="7" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/></t>
</list></t>

<t>The subset of the packet grammar expected in the first two forms consists of either:</t>

<t><list style="symbols">
  <t>a series of Signature packets followed by a Literal Data packet</t>
  <t>a series of One-Pass Signature (OPS) packets, followed by one Literal Data packet, followed by an equal number of Signature packets corresponding to the OPS packets</t>
</list></t>

<t>When the message is in the third form (Cleartext Signature Framework), it has the following properties:</t>

<t><list style="symbols">
  <t>The stream <bcp14>SHOULD</bcp14> consist solely of <spanx style="verb">UTF-8</spanx> text</t>
  <t>Every Signature packet found in the stream <bcp14>SHOULD</bcp14> have Signature Type 0x01 (canonical text document).</t>
  <t>It <bcp14>SHOULD NOT</bcp14> contain leading text (before the <spanx style="verb">-----BEGIN PGP SIGNED MESSAGE-----</spanx> cleartext header) or trailing text (after the <spanx style="verb">-----END PGP SIGNATURE-----</spanx> armor tail).</t>
</list></t>

<t>While some OpenPGP implementations <bcp14>MAY</bcp14> produce more complicated inline signed messages, a <spanx style="verb">sop</spanx> implementation <bcp14>SHOULD</bcp14> limit itself to producing these straightforward forms.</t>

</section>
<section anchor="signature"><name>SIGNATURES</name>

<t>One or more OpenPGP Signature packets.  May be armored (see <xref target="optional-input-armoring"/>).</t>

</section>
<section anchor="sessionkey"><name>SESSIONKEY</name>

<t>This documentation uses the GnuPG defacto <spanx style="verb">ASCII</spanx> representation:</t>

<t><spanx style="verb">ALGONUM:HEXKEY</spanx></t>

<t>where <spanx style="verb">ALGONUM</spanx> is the decimal value associated with the OpenPGP Symmetric Key Algorithms (<xref section="9.3" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>) and <spanx style="verb">HEXKEY</spanx> is the hexadecimal
representation of the binary key.</t>

<t>Example AES-256 session key:</t>

<figure><artwork><![CDATA[
9:FCA4BEAF687F48059CACC14FB019125CD57392BAB7037C707835925CBF9F7BCD
]]></artwork></figure>

<t>A <spanx style="verb">sop</spanx> implementation <bcp14>SHOULD</bcp14> produce session key data in this format.
When consuming such a session key, <spanx style="verb">sop</spanx> <bcp14>SHOULD</bcp14> be willing to accept either upper or lower case hexadecimal digits, and to gracefully ignore any trailing whitespace.</t>

</section>
<section anchor="micalg"><name>MICALG</name>

<t>This output-only type indicates the cryptographic digest used when making a signature.
It is useful specifically when generating signed PGP/MIME objects, which want a <spanx style="verb">micalg=</spanx> parameter for the <spanx style="verb">multipart/signed</spanx> content type as described in <xref section="5" sectionFormat="of" target="RFC3156"/>.</t>

<t>It will typically be a string like <spanx style="verb">pgp-sha512</spanx>, but in some situations (multiple signatures using different digests) it will be the empty string.
If the user of <spanx style="verb">sop</spanx> is assembling a PGP/MIME signed object, and the <spanx style="verb">MICALG</spanx> output is the empty string,
the user should omit the <spanx style="verb">micalg=</spanx> parameter entirely.</t>

</section>
<section anchor="password"><name>PASSWORD</name>

<t>This input-only is expected to be a <spanx style="verb">UTF-8</spanx> string (<xref target="utf8"/>), but for <spanx style="verb">sop decrypt</spanx>, any bytestring that the user supplies will be accepted.
Note the details in <spanx style="verb">sop encrypt</spanx> and <spanx style="verb">sop decrypt</spanx> about trailing whitespace!</t>

<t>See also <xref target="human-readable-passwords"/> for more discussion.</t>

</section>
<section anchor="verifications"><name>VERIFICATIONS</name>

<t>This output-only type consists of one line per successful signature verification.
Each line has three structured fields delimited by a single space,
followed by arbitrary text to the end of the line that forms a message describing the verification.</t>

<t><list style="symbols">
  <t>ISO-8601 UTC datestamp of the signature, to one second precision, using the <spanx style="verb">Z</spanx> suffix</t>
  <t>Fingerprint of the signing key (may be a subkey)</t>
  <t>Fingerprint of primary key of signing certificate (if signed by primary key, same as the previous field)</t>
  <t>(optional) a string describing the mode of the signature, either <spanx style="verb">mode:text</spanx> or <spanx style="verb">mode:binary</spanx></t>
  <t>message describing the verification (free form)</t>
</list></t>

<t>Note that while <xref target="date"/> permits a <spanx style="verb">sop</spanx> implementation to accept other unambiguous date representations,
its date output here <bcp14>MUST</bcp14> be a strict ISO-8601 UTC date timestamp.
In particular:</t>

<t><list style="symbols">
  <t>the date and time fields <bcp14>MUST</bcp14> be separated by <spanx style="verb">T</spanx>, not by whitespace, since whitespace is used as a delimiter</t>
  <t>the time <bcp14>MUST</bcp14> be emitted in UTC, with the explicit suffix <spanx style="verb">Z</spanx></t>
  <t>the time <bcp14>MUST</bcp14> be emitted with one-second precision</t>
</list></t>

<t>Example:</t>

<figure><artwork><![CDATA[
2019-10-24T23:48:29Z C90E6D36200A1B922A1509E77618196529AE5FF8 C4BC2DDB38CCE96485EBE9C2F20691179038E5C6 mode:binary certificate from dkg.asc
]]></artwork></figure>

</section>
<section anchor="data"><name>DATA</name>

<t>Cleartext, arbitrary data.  This is either a bytestream or <spanx style="verb">UTF-8</spanx> text.</t>

<t>It <bcp14>MUST</bcp14> only be <spanx style="verb">UTF-8</spanx> text in the case of input supplied to <spanx style="verb">sop sign --as=text</spanx> or <spanx style="verb">sop encrypt --as=text</spanx>.
If <spanx style="verb">sop</spanx> receives <spanx style="verb">DATA</spanx> containing non-<spanx style="verb">UTF-8</spanx> octets in this case, it will fail (see <xref target="utf8"/>) with <spanx style="verb">EXPECTED_TEXT</spanx>.</t>

</section>
<section anchor="profilelist"><name>PROFILELIST</name>

<t>This output-only type consists of simple UTF-8 textual output, with one line per profile.
Each line consists of the profile name optionally followed by a colon (0x31), a space (0x20), and a brief human-readable description of the intended semantics of the profile.
Each line may be at most 1000 bytes, and no more than 4 profiles may be listed.</t>

<t>These limits are intended to force <spanx style="verb">sop</spanx> implementers to make hard decisions and to keep things simple.</t>

<t>The first profile <bcp14>MAY</bcp14> be explicitly named <spanx style="verb">default</spanx>.
If it is not named <spanx style="verb">default</spanx>, then <spanx style="verb">default</spanx> is an alias for the first profile listed.
No profile after the first listed may be named <spanx style="verb">default</spanx>.</t>

<t>See <xref target="profile"/> for more discussion about the namespace and intended semantics of each profile.</t>

</section>
</section>
<section anchor="failure-modes"><name>Failure Modes</name>

<t><spanx style="verb">sop</spanx> return codes have both mnemonics and numeric values.</t>

<t>When <spanx style="verb">sop</spanx> succeeds, it will return 0 (<spanx style="verb">OK</spanx>) and emit nothing to Standard Error.
When <spanx style="verb">sop</spanx> fails, it fails with a non-zero return code, and emits one or more warning messages on Standard Error.
Known return codes include:</t>

<texttable title="Error return codes">
      <ttcol align='right'>Value</ttcol>
      <ttcol align='left'>Mnemonic</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <c>0</c>
      <c><spanx style="verb">OK</spanx></c>
      <c>Success</c>
      <c>3</c>
      <c><spanx style="verb">NO_SIGNATURE</spanx></c>
      <c>No acceptable signatures found (<spanx style="verb">sop verify</spanx>)</c>
      <c>13</c>
      <c><spanx style="verb">UNSUPPORTED_ASYMMETRIC_ALGO</spanx></c>
      <c>Asymmetric algorithm unsupported (<spanx style="verb">sop encrypt</spanx>)</c>
      <c>17</c>
      <c><spanx style="verb">CERT_CANNOT_ENCRYPT</spanx></c>
      <c>Certificate not encryption-capable (e.g., expired, revoked, unacceptable usage flags) (<spanx style="verb">sop encrypt</spanx>)</c>
      <c>19</c>
      <c><spanx style="verb">MISSING_ARG</spanx></c>
      <c>Missing required argument</c>
      <c>23</c>
      <c><spanx style="verb">INCOMPLETE_VERIFICATION</spanx></c>
      <c>Incomplete verification instructions (<spanx style="verb">sop decrypt</spanx>)</c>
      <c>29</c>
      <c><spanx style="verb">CANNOT_DECRYPT</spanx></c>
      <c>Unable to decrypt (<spanx style="verb">sop decrypt</spanx>)</c>
      <c>31</c>
      <c><spanx style="verb">PASSWORD_NOT_HUMAN_READABLE</spanx></c>
      <c>Non-<spanx style="verb">UTF-8</spanx> or otherwise unreliable password (<spanx style="verb">sop encrypt</spanx>, <spanx style="verb">sop generate-key</spanx>)</c>
      <c>37</c>
      <c><spanx style="verb">UNSUPPORTED_OPTION</spanx></c>
      <c>Unsupported option</c>
      <c>41</c>
      <c><spanx style="verb">BAD_DATA</spanx></c>
      <c>Invalid data type (no secret key where <spanx style="verb">KEYS</spanx> expected, etc)</c>
      <c>53</c>
      <c><spanx style="verb">EXPECTED_TEXT</spanx></c>
      <c>Non-text input where text expected</c>
      <c>59</c>
      <c><spanx style="verb">OUTPUT_EXISTS</spanx></c>
      <c>Output file already exists</c>
      <c>61</c>
      <c><spanx style="verb">MISSING_INPUT</spanx></c>
      <c>Input file does not exist</c>
      <c>67</c>
      <c><spanx style="verb">KEY_IS_PROTECTED</spanx></c>
      <c>A <spanx style="verb">KEYS</spanx> input is password-protected (locked), and <spanx style="verb">sop</spanx> cannot unlock it with any of the <spanx style="verb">--with-key-password</spanx> options</c>
      <c>69</c>
      <c><spanx style="verb">UNSUPPORTED_SUBCOMMAND</spanx></c>
      <c>Unsupported subcommand</c>
      <c>71</c>
      <c><spanx style="verb">UNSUPPORTED_SPECIAL_PREFIX</spanx></c>
      <c>An indirect parameter is a special designator (it starts with <spanx style="verb">@</spanx>) but <spanx style="verb">sop</spanx> does not know how to handle the prefix</c>
      <c>73</c>
      <c><spanx style="verb">AMBIGUOUS_INPUT</spanx></c>
      <c>A indirect input parameter is a special designator (it starts with <spanx style="verb">@</spanx>), and a filename matching the designator is actually present</c>
      <c>79</c>
      <c><spanx style="verb">KEY_CANNOT_SIGN</spanx></c>
      <c>Key not signature-capable (e.g., expired, revoked, unacceptable usage flags) (<spanx style="verb">sop sign</spanx> and <spanx style="verb">sop encrypt</spanx> with <spanx style="verb">--sign-with</spanx>)</c>
      <c>83</c>
      <c><spanx style="verb">INCOMPATIBLE_OPTIONS</spanx></c>
      <c>Options were supplied that are incompatible with each other</c>
      <c>89</c>
      <c><spanx style="verb">UNSUPPORTED_PROFILE</spanx></c>
      <c>The requested profile is unsupported (<spanx style="verb">sop generate-key</spanx>, <spanx style="verb">sop encrypt</spanx>), or the indicated subcommand does not accept profiles (<spanx style="verb">sop list-profiles</spanx>)</c>
</texttable>

<t>If a <spanx style="verb">sop</spanx> implementation fails in some way not contemplated by this document, it <bcp14>MAY</bcp14> return any non-zero error code, not only those listed above.</t>

</section>
<section anchor="known-implementations"><name>Known Implementations</name>

<t>The following implementations are known at the time of this draft:</t>

<texttable title="Known implementations">
      <ttcol align='left'>Project name</ttcol>
      <ttcol align='left'>URL</ttcol>
      <ttcol align='left'>cli name</ttcol>
      <ttcol align='left'>notes</ttcol>
      <c>Sequoia SOP</c>
      <c>https://gitlab.com/sequoia-pgp/sequoia-sop</c>
      <c><spanx style="verb">sqop</spanx></c>
      <c>Implemented in Rust using the <spanx style="verb">sequoia-openpgp</spanx> crate</c>
      <c>gosop</c>
      <c>https://github.com/ProtonMail/gosop</c>
      <c><spanx style="verb">gosop</spanx></c>
      <c>Implemented in golang (Go) using GOpenPGP</c>
      <c>PGPainless SOP</c>
      <c>https://codeberg.org/PGPainless/pgpainless/src/branch/master/pgpainless-sop</c>
      <c><spanx style="verb">pgpainless-cli</spanx></c>
      <c>Implemented in Java using PGPainless</c>
      <c>sopgpy</c>
      <c>https://gitlab.com/sequoia-pgp/openpgp-interoperability-test-suite/-/blob/main/glue/sopgpy</c>
      <c><spanx style="verb">sopgpy</spanx></c>
      <c>Implemented in Python using PGPy</c>
      <c>sop-openpgp.js</c>
      <c>https://github.com/openpgpjs/sop-openpgpjs</c>
      <c><spanx style="verb">sop-openpgp</spanx></c>
      <c>Implemented in JavaScript using OpenPGP.js</c>
      <c>gpgme-sop</c>
      <c>https://gitlab.com/sequoia-pgp/gpgme-sop</c>
      <c><spanx style="verb">gpgme-sop</spanx></c>
      <c>A Rust wrapper around the gpgme C library</c>
      <c>RNP-sop</c>
      <c>https://gitlab.com/sequoia-pgp/rnp-sop</c>
      <c><spanx style="verb">rnp-sop</spanx></c>
      <c>A Rust wrapper around the librnp C library</c>
      <c>dkg-sop</c>
      <c>https://git.savannah.nongnu.org/cgit/dkgpg.git/tree/tools/dkg-sop.cc</c>
      <c><spanx style="verb">dkg-sop</spanx></c>
      <c>Implemented in C++ using the LibTMCG library</c>
</texttable>

</section>
<section anchor="alternate-interfaces"><name>Alternate Interfaces</name>

<t>This draft primarily defines a command line interface, but future versions may try to outline a comparable idiomatic interface for C or some other widely-used programming language.</t>

<t>Comparable idiomatic interfaces are already active in the wild for different programming languages, in particular:</t>

<t><list style="symbols">
  <t>Rust: <xref target="RUST-SOP"/></t>
  <t>Java: <xref target="SOP-JAVA"/></t>
  <t>Python: <xref target="PYTHON-SOP"/></t>
</list></t>

<t>These programmatic interfaces are typically coupled with a wrapper that can automatically generate a command-line tool compatible with this draft.</t>

<t>An implementation that uses one of these languages should target the corresponding idiomatic interface for ease of development and interoperability.</t>

</section>
<section anchor="guidance-for-implementers"><name>Guidance for Implementers</name>

<t><spanx style="verb">sop</spanx> uses a few assumptions that implementers might want to consider.</t>

<section anchor="one-openpgp-message-at-a-time"><name>One OpenPGP Message at a Time</name>

<t><spanx style="verb">sop</spanx> is intended to be a simple tool that operates on one OpenPGP object at a time.  It should be composable, if you want to use it to deal with multiple OpenPGP objects.</t>

<t>FIXME: discuss what this means for streaming.
The stdio interface doesn't necessarily imply streamed output.</t>

</section>
<section anchor="simplified-subset-of-openpgp-message"><name>Simplified Subset of OpenPGP Message</name>

<t>While the formal grammar for OpenPGP Message is arbitrarily nestable, <spanx style="verb">sop</spanx> constrains itself to what it sees as a single "layer" (see <xref target="ciphertext"/>).</t>

<t>This is a deliberate choice, because it is what most consumers expect.
Also, if an arbitrarily-nested structure is parsed with a recursive algorithm, this risks a denial of service vulnerability.
<spanx style="verb">sop</spanx> intends to be implementable with a parser that defensively declines to do recursive descent into an OpenPGP Message.</t>

<t>Note that an implementation of <spanx style="verb">sop decrypt</spanx> <bcp14>MAY</bcp14> choose to handle more complex structures, but if it does, it should document the other structures it handles and why it chooses to do so.
We can use such documentation to improve future versions of this spec.</t>

</section>
<section anchor="validate-signatures-only-from-known-signers"><name>Validate Signatures Only from Known Signers</name>

<t>There are generally only a few signers who are relevant for a given OpenPGP message.
When verifying signatures, <spanx style="verb">sop</spanx> expects that the caller can identify those relevant signers ahead of time.</t>

</section>
<section anchor="optional-input-armoring"><name>OpenPGP Inputs can be either Binary or ASCII-armored</name>

<t>OpenPGP material on input can be in either ASCII-armored or binary form.
This is a deliberate choice because there are typical scenarios where the program can't predict which form will appear.
Expecting the caller of <spanx style="verb">sop</spanx> to detect the form and adjust accordingly seems both redundant and error-prone.</t>

<t>The simple way to detect possible ASCII-armoring is to see whether the high bit of the first octet is set:
<xref section="4.2" sectionFormat="of" target="RFC4880"/> indicates that bit 7 is always one in the first octet of an OpenPGP packet.
In standard ASCII-armor, the first character is <u>-</u>, so the high bit should be cleared.</t>

<t>When considering an input as ASCII-armored OpenPGP material, <spanx style="verb">sop</spanx> <bcp14>MAY</bcp14> reject an input based on any of the following variations (see <xref section="6.2" sectionFormat="of" target="RFC4880"/> for precise definitions):</t>

<t><list style="symbols">
  <t>An unknown Armor Header Line</t>
  <t>Any text before the Armor Header Line</t>
  <t>Malformed lines in the Armor Headers section</t>
  <t>Any non-whitespace data after the Armor Tail</t>
  <t>Any Radix-64 encoded line with more than 76 characters</t>
  <t>Invalid characters in the Radix-64-encoded data</t>
  <t>An invalid Armor Checksum</t>
  <t>A mismatch between the Armor Header Line and the Armor Tail</t>
</list></t>

<t>For robustness, <spanx style="verb">sop</spanx> <bcp14>SHOULD</bcp14> be willing to ignore whitespace after the Armor Tail.</t>

<t>When considering OpenPGP material as input, regardless of whether it is ASCII-armored or binary, <spanx style="verb">sop</spanx> <bcp14>SHOULD</bcp14> reject any material that doesn't produce a valid stream of OpenPGP packets.
For example, <spanx style="verb">sop</spanx> <bcp14>SHOULD</bcp14> raise an error if an OpenPGP packet header is malformed, or if there is trailing garbage after the end of a packet.</t>

<t>For a given type of OpenPGP input material (i.e.,  <spanx style="verb">SIGNATURES</spanx>, <spanx style="verb">CERTS</spanx>, <spanx style="verb">KEYS</spanx>, <spanx style="verb">INLINESIGNED</spanx>, or <spanx style="verb">CIPHERTEXT</spanx>), <spanx style="verb">sop</spanx> <bcp14>SHOULD</bcp14> also reject any input that does not conform to the expected packet stream.
See <xref target="indirect-types"/> for the expected packet stream for different types.</t>

</section>
<section anchor="csf-risks"><name>Complexities of the Cleartext Signature Framework</name>

<t><spanx style="verb">sop</spanx> prefers a detached signature as the baseline form of OpenPGP signature, but provides affordances for dealing with inline-signed messages (see <spanx style="verb">INLINESIGNED</spanx>, <xref target="inlinesigned"/>) as well.</t>

<t>The most complex form of inline-signed messages is the Cleartext Signature Framework (CSF).
Handling the CSF structure requires parsing to delimit the multiple parts of the document, including at least:</t>

<t><list style="symbols">
  <t>any preamble before the message</t>
  <t>the inline message header (delimiter line, OpenPGP headers)</t>
  <t>the message itself</t>
  <t>the divider between the message and the signature (including any OpenPGP headers there)</t>
  <t>the signature</t>
  <t>the divider that terminates the signature</t>
  <t>any suffix after the signature</t>
</list></t>

<t>Note also that the preamble or the suffix might be arbitrary text, and might themselves contain OpenPGP messages (whether signatures or otherwise).</t>

<t>If the parser that does this split differs in any way from the parser that does the verification, or parts of the message are confused,
it would be possible to produce a verification status and an actual signed message that don't correspond to one another.</t>

<t>Blurred boundary problems like this can produce ugly attacks similar to those found in <xref target="EFAIL"></xref>.</t>

<t>A user of <spanx style="verb">sop</spanx> that receives an inline-signed message (whether the message uses the CSF or not) can detach the signature from the message with <spanx style="verb">sop inline-detach</spanx> (see <xref target="inline-detach"/>).</t>

<t>Alternately, the user can send the message through <spanx style="verb">sop inline-verify</spanx> to confirm required signatures, and then (if signatures are valid) supply its output to the consumer of the signed message.</t>

</section>
<section anchor="cert-validity-performance"><name>Reliance on Supplied Certs and Keys</name>

<t>A truly stateless implementation may find that it spends more time validating the internal consistency of certificates and keys than it does on the actual object security operations.</t>

<t>For performance reasons, an implementation may choose to ignore validation on certificate and key material supplied to it.  The security implications of doing so depend on how the certs and keys are managed outside of <spanx style="verb">sop</spanx>.</t>

</section>
<section anchor="utf8"><name>Text is always UTF-8</name>

<t>Various places in this specification require UTF-8 <xref target="RFC3629"/> when encoding text. <spanx style="verb">sop</spanx> implementations <bcp14>SHOULD NOT</bcp14> consider textual data in any other character encoding.</t>

<t>OpenPGP Implementations <bcp14>MUST</bcp14> already handle UTF-8, because various parts of <xref target="RFC4880"/> require it, including:</t>

<t><list style="symbols">
  <t>User ID</t>
  <t>Notation name</t>
  <t>Reason for revocation</t>
  <t>ASCII-armor Comment: header</t>
</list></t>

<t>Dealing with messages in other charsets leads to weird security failures like <xref target="Charset-Switching"/>, especially when the charset indication is not covered by any sort of cryptographic integrity check.
Restricting textual data to <spanx style="verb">UTF-8</spanx> universally across the OpenPGP ecosystem eliminates any such risk without losing functionality, since <spanx style="verb">UTF-8</spanx> can encode all known characters.</t>

</section>
<section anchor="human-readable-passwords"><name>Passwords are Human-Readable</name>

<t>Passwords are generally expected to be human-readable, as they are typically recorded and transmitted as human-visible, human-transferable strings.
However, they are used in the OpenPGP protocol as bytestrings, so it is important to ensure that there is a reliable bidirectional mapping between strings and bytes.
The maximally robust behavior here is for <spanx style="verb">sop encrypt</spanx> and <spanx style="verb">sop generate-key</spanx> (that is, commands that use a password to encrypt) to constrain the choice of passwords to strings that have such a mapping,
and for <spanx style="verb">sop decrypt</spanx> and <spanx style="verb">sop sign</spanx> (and <spanx style="verb">sop inline-sign</spanx>, as well as<spanx style="verb">sop encrypt</spanx> when decrypting a signing key; that is, commands that use a password to decrypt) to try multiple plausible versions of any password supplied by <spanx style="verb">PASSWORD</spanx>.</t>

<section anchor="generating-human-readable"><name>Generating Material with Human-Readable Passwords</name>

<t>When generating material based on a password, <spanx style="verb">sop encrypt</spanx> and <spanx style="verb">sop generate-key</spanx> enforce that the password is actually meaningfully human-transferable.
In particular, an implementation generating material based on a new paasword <bcp14>SHOULD</bcp14> apply the following considerations to the supplied password:</t>

<t><list style="symbols">
  <t>require <spanx style="verb">UTF-8</spanx></t>
  <t>trim trailing whitespace</t>
</list></t>

<t>Some <spanx style="verb">sop encrypt</spanx> and <spanx style="verb">sop generate-key</spanx> implementations may make even more strict requirements on input to ensure that they are transferable between humans in a robust way.</t>

<t>For example, a more strict <spanx style="verb">sop encrypt</spanx> or <spanx style="verb">sop generate-key</spanx> <bcp14>MAY</bcp14> also:</t>

<t><list style="symbols">
  <t>forbid leading whitespace</t>
  <t>forbid non-printing characters other than <spanx style="verb">SPACE (U+0020)</spanx>, such as <spanx style="verb">ZERO WIDTH NON-JOINER (U+200C)</spanx> or <spanx style="verb">TAB (U+0009)</spanx></t>
  <t>require the password to be in Unicode Normal Form C (<xref target="UNICODE-NORMALIZATION"/>)</t>
</list></t>

<t>Violations of these more-strict policies <bcp14>SHOULD</bcp14> result in an error of <spanx style="verb">PASSWORD_NOT_HUMAN_READABLE</spanx>.</t>

<t>A <spanx style="verb">sop encrypt</spanx> or <spanx style="verb">sop generate-key</spanx> implementation typically <bcp14>SHOULD NOT</bcp14> attempt enforce a minimum "password strength",
but in the event that some implementation does, it <bcp14>MUST NOT</bcp14> represent a weak password with <spanx style="verb">PASSWORD_NOT_HUMAN_READABLE</spanx>.</t>

</section>
<section anchor="consuming-passwords"><name>Consuming Password-protected Material</name>

<t>When <spanx style="verb">sop decrypt</spanx> receives a <spanx style="verb">PASSWORD</spanx> input, either from a <spanx style="verb">--with-key-password</spanx> or <spanx style="verb">--with-password</spanx> option, it sees its content as a bytestring.
<spanx style="verb">sop sign</spanx> also sees the content of any <spanx style="verb">PASSWORD</spanx> input supplied to its <spanx style="verb">--with-key-password</spanx>  option as a bytestring.
If the bytestring fails to work as a password, but ends in <spanx style="verb">UTF-8</spanx> whitespace, it will try again with the trailing whitespace removed.
This handles a common pattern of using a file with a final newline, for example.
The pattern here is one of robustness in the face of typical errors in human-transferred textual data.</t>

<t>A more robust <spanx style="verb">sop decrypt</spanx> or <spanx style="verb">sop sign</spanx> implementation that finds neither of the above two attempts work for a given <spanx style="verb">PASSWORD</spanx> <bcp14>MAY</bcp14> try additional variations if they produce a different bytestring, such as:</t>

<t><list style="symbols">
  <t>trimming any leading whitespace, if discovered</t>
  <t>trimming any internal non-printable characters other than <spanx style="verb">SPACE (U+0020)</spanx></t>
  <t>converting the supplied <spanx style="verb">PASSWORD</spanx> into Unicode Normal Form C (<xref target="UNICODE-NORMALIZATION"/>)</t>
</list></t>

<t>A <spanx style="verb">sop decrypt</spanx> or <spanx style="verb">sop sign</spanx> implementation that stages multiple decryption attempts like this <bcp14>SHOULD</bcp14> consider the computational resources consumed by each attempt, to avoid presenting an attack surface for resource exhaustion in the face of a non-standard <spanx style="verb">PASSWORD</spanx> input.</t>

</section>
</section>
<section anchor="special-designators-guidance"><name>Be Careful with Special Designators</name>

<t>As documented in <xref target="special-designators"/>, special designators for indirect inputs like <spanx style="verb">@ENV:</spanx> and <spanx style="verb">@FD:</spanx> (and indirect outputs using <spanx style="verb">@FD:</spanx>) warrant some special/cautious handling.</t>

<t>For one thing, it's conceivable that the filesystem could contain a file with these literal names.
If <spanx style="verb">sop</spanx> receives an indirect output parameter that starts with an <u>@</u> it <bcp14>MUST NOT</bcp14> write to the filesystem for that parameter.
A <spanx style="verb">sop</spanx> implementation that receives such a parameter as input <bcp14>MAY</bcp14> test for the presence of such a file in the filesystem and fail with <spanx style="verb">AMBIGUOUS_INPUT</spanx> to warn the user of the ambiguity and possible confusion.</t>

<t>These special designators are likely to be used to pass sensitive data (like secret key material or passwords) so that it doesn't need to touch the filesystem.
Given this sensitivity, <spanx style="verb">sop</spanx> should be careful with such an input, and minimize its leakage to other processes.
In particular, <spanx style="verb">sop</spanx> <bcp14>SHOULD NOT</bcp14> leak any environment variable identified by <spanx style="verb">@ENV:</spanx> or file descriptor identified by <spanx style="verb">@FD:</spanx> to any subprocess unless the subprocess specifically needs access to that data.</t>

</section>
</section>
<section anchor="guidance-for-consumers"><name>Guidance for Consumers</name>

<t>While <spanx style="verb">sop</spanx> is originally conceived of as an interface for interoperability testing, it's conceivable that an application that uses OpenPGP for object security would want to use it.</t>

<t>FIXME: more guidance for how to use such a tool safely and efficiently goes here.</t>

<t>FIXME: if an encrypted OpenPGP message arrives without metadata, it is difficult to know which signers to consider when decrypting.
How do we do this efficiently without invoking <spanx style="verb">sop decrypt</spanx> twice, once without <spanx style="verb">--verify-*</spanx> and again with the expected identity material?</t>

<section anchor="choosing-between-astext-and-asbinary"><name>Choosing Between --as=text and --as=binary</name>

<t>A program that invokes <spanx style="verb">sop</spanx> to generate an OpenPGP signature typically needs to decide whether it is making a text or binary signature.</t>

<t>By default, <spanx style="verb">sop</spanx> will make a binary signature.
The caller of <spanx style="verb">sop sign</spanx> should choose <spanx style="verb">--as=text</spanx> only when it knows that:</t>

<t><list style="symbols">
  <t>the data being signed is in fact textual, and encoded in <spanx style="verb">UTF-8</spanx>, and</t>
  <t>the signed data might be transmitted to the recipient (the verifier of the signature) over a channel that has the propensity to transform line-endings.</t>
</list></t>

<t>Examples of such channels include FTP (<xref target="RFC0959"/>) and SMTP (<xref target="RFC5321"/>).</t>

</section>
<section anchor="special-designators-and-unusual-filenames"><name>Special Designators and Unusual Filenames</name>

<t>In some cases, a user of <spanx style="verb">sop</spanx> might want to pass all the files in a given directory as positional parameters (e.g., a list of CERTS files to test a signature against).</t>

<t>If one of the files has a name that starts with <spanx style="verb">--</spanx>, it might be confused by <spanx style="verb">sop</spanx> for an option.
If one of the files has a name that starts with <spanx style="verb">@</spanx>, it might be confused by <spanx style="verb">sop</spanx> as a special designator (<xref target="special-designators"/>).</t>

<t>If the user wants to deliberately refer to such an ambiguously-named file in the filesystem, they should prefix the filename with  <spanx style="verb">./</spanx> or use an absolute path.</t>

<t>Any specific <spanx style="verb">@FD:</spanx> special designator <bcp14>SHOULD NOT</bcp14> be supplied more than once to an invocation of <spanx style="verb">sop</spanx>.
If a <spanx style="verb">sop</spanx> invocation sees multiple copies of a specific <spanx style="verb">@FD:n</spanx> input (e.g., <spanx style="verb">sop sign @FD:3 @FD:3</spanx>),
it <bcp14>MAY</bcp14> fail with <spanx style="verb">MISSING_INPUT</spanx> even if file descriptor 3 contains a valid <spanx style="verb">KEYS</spanx>, because the bytestream for the <spanx style="verb">KEYS</spanx> was consumed by the first argument.
Doubling up on the same <spanx style="verb">@FD:</spanx> for output (e.g., <spanx style="verb">sop decrypt --session-key-out=@FD:3 --verifications-out=@FD:3</spanx>) also results in an ambiguous data stream.</t>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>The OpenPGP object security model is typically used for confidentiality and authenticity purposes.</t>

<section anchor="signature-verification"><name>Signature Verification</name>

<t>In many contexts, an OpenPGP signature is verified to prove the origin and integrity of an underlying object.</t>

<t>When <spanx style="verb">sop</spanx> checks a signature (e.g. via <spanx style="verb">sop verify</spanx> or <spanx style="verb">sop decrypt --verify-with</spanx>), it <bcp14>MUST NOT</bcp14> consider it to be verified unless all of these conditions are met:</t>

<t><list style="symbols">
  <t>The signature must be made by a signing-capable public key that is present in one of the supplied certificates</t>
  <t>The certificate and signing subkey must have been created before or at the signature time</t>
  <t>The certificate and signing subkey must not have been expired at the signature time</t>
  <t>The certificate and signing subkey must not be revoked with a "hard" revocation</t>
  <t>If the certificate or signing subkey is revoked with a "soft" revocation, then the signature time must predate the revocation</t>
  <t>The signing subkey must be properly bound to the primary key, and cross-signed</t>
  <t>The signature (and any dependent signature, such as the cross-sig or subkey binding signatures) must be made with strong cryptographic algorithms (e.g., not <spanx style="verb">MD5</spanx> or a 1024-bit <spanx style="verb">RSA</spanx> key)</t>
</list></t>

<t>Implementers <bcp14>MAY</bcp14> also consider other factors in addition to the origin and authenticity, including application-specific information.</t>

<t>For example, consider the application domain of checking software updates.
If software package Foo version 13.3.2 was signed on 2019-10-04, and the user receives a copy of Foo version 12.4.8 that was signed on 2019-10-16, it may be authentic and have a more recent signature date.
But it is not an upgrade (12.4.8 &lt; 13.3.2), and therefore it should not be applied automatically.</t>

<t>In such cases, it is critical that the application confirms that the other information verified is <em>also</em> protected by the relevant OpenPGP signature.</t>

<t>Signature validity is a complex topic (see for example the discussion at <xref target="DISPLAYING-SIGNATURES"/>), and this documentation cannot list all possible details.</t>

</section>
<section anchor="compression"><name>Compression</name>

<t>The interface as currently specified does not allow for control of compression.
Compressing and encrypting data that may contain both attacker-supplied material and sensitive material could leak information about the sensitive material (see the CRIME attack).</t>

<t>Unless an application knows for sure that no attacker-supplied material is present in the input, it should not compress during encryption.</t>

</section>
</section>
<section anchor="privacy-considerations"><name>Privacy Considerations</name>

<t>Material produced by <spanx style="verb">sop encrypt</spanx> may be placed on an untrusted machine (e.g., sent through the public <spanx style="verb">SMTP</spanx> network).
That material may contain metadata that leaks associational information (e.g., recipient identifiers in PKESK packets (<xref section="5.1" sectionFormat="of" target="I-D.ietf-openpgp-crypto-refresh-07"/>)).
FIXME: document things like PURBs and <spanx style="verb">--hidden-recipient</spanx>)</t>

<section anchor="object-security-vs-transport-security"><name>Object Security vs. Transport Security</name>

<t>OpenPGP offers an object security model, but says little to nothing about how the secured objects get to the relevant parties.</t>

<t>When sending or receiving OpenPGP material, the implementer should consider what privacy leakage is implicit with the transport.</t>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>





<reference anchor='RFC2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<date month='May' year='2017'/>
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference anchor='RFC4880'>
<front>
<title>OpenPGP Message Format</title>
<author fullname='J. Callas' initials='J.' surname='Callas'><organization/></author>
<author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'><organization/></author>
<author fullname='H. Finney' initials='H.' surname='Finney'><organization/></author>
<author fullname='D. Shaw' initials='D.' surname='Shaw'><organization/></author>
<author fullname='R. Thayer' initials='R.' surname='Thayer'><organization/></author>
<date month='November' year='2007'/>
<abstract><t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.  It is not a step-by-step cookbook for writing an application.  It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network.  It does not deal with storage and implementation questions. It does, however, discuss implementation issues necessary to avoid security flaws.</t><t>OpenPGP software uses a combination of strong public-key and symmetric cryptography to provide security services for electronic communications and data storage.  These services include confidentiality, key management, authentication, and digital signatures.  This document specifies the message formats used in OpenPGP.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4880'/>
<seriesInfo name='DOI' value='10.17487/RFC4880'/>
</reference>


<reference anchor='I-D.ietf-openpgp-crypto-refresh-07'>
   <front>
      <title>OpenPGP Message Format</title>
      <author fullname='Paul Wouters' initials='P.' surname='Wouters'>
         <organization>Aiven</organization>
      </author>
      <author fullname='Daniel Huigens' initials='D.' surname='Huigens'>
         <organization>Proton AG</organization>
      </author>
      <author fullname='Justus Winter' initials='J.' surname='Winter'>
         <organization>Sequoia-PGP</organization>
      </author>
      <author fullname='Niibe Yutaka' initials='N.' surname='Yutaka'>
         <organization>FSIJ</organization>
      </author>
      <date day='23' month='October' year='2022'/>
      <abstract>
	 <t>   This document specifies the message formats used in OpenPGP.  OpenPGP
   provides encryption with public-key or symmetric cryptographic
   algorithms, digital signatures, compression and key management.

   This document is maintained in order to publish all necessary
   information needed to develop interoperable applications based on the
   OpenPGP format.  It is not a step-by-step cookbook for writing an
   application.  It describes only the format and methods needed to
   read, check, generate, and write conforming packets crossing any
   network.  It does not deal with storage and implementation questions.
   It does, however, discuss implementation issues necessary to avoid
   security flaws.

   This document obsoletes: RFC 4880 (OpenPGP), RFC 5581 (Camellia in
   OpenPGP) and RFC 6637 (Elliptic Curves in OpenPGP).

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-openpgp-crypto-refresh-07'/>
   
</reference>



<reference anchor='RFC3156'>
<front>
<title>MIME Security with OpenPGP</title>
<author fullname='M. Elkins' initials='M.' surname='Elkins'><organization/></author>
<author fullname='D. Del Torto' initials='D.' surname='Del Torto'><organization/></author>
<author fullname='R. Levien' initials='R.' surname='Levien'><organization/></author>
<author fullname='T. Roessler' initials='T.' surname='Roessler'><organization/></author>
<date month='August' year='2001'/>
<abstract><t>This document describes how the OpenPGP Message Format can be used to provide privacy and authentication using the Multipurpose Internet Mail Extensions (MIME) security content types described in RFC 1847. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3156'/>
<seriesInfo name='DOI' value='10.17487/RFC3156'/>
</reference>



<reference anchor='RFC3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<author fullname='F. Yergeau' initials='F.' surname='Yergeau'><organization/></author>
<date month='November' year='2003'/>
<abstract><t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t></abstract>
</front>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="OpenPGP-Interoperability-Test-Suite" target="https://tests.sequoia-pgp.org/">
  <front>
    <title>OpenPGP Interoperability Test Suite</title>
    <author >
      <organization></organization>
    </author>
    <date year="2021" month="October" day="25"/>
  </front>
</reference>
<reference anchor="Charset-Switching" target="https://dkg.fifthhorseman.net/notes/inline-pgp-harmful/">
  <front>
    <title>Inline PGP Considered Harmful</title>
    <author initials="D. K." surname="Gillmor" fullname="Daniel Kahn Gillmor">
      <organization></organization>
    </author>
    <date year="2014" month="February" day="24"/>
  </front>
</reference>
<reference anchor="DISPLAYING-SIGNATURES" target="https://admin.hostpoint.ch/pipermail/enigmail-users_enigmail.net/2017-November/004683.html">
  <front>
    <title>On Displaying Signatures</title>
    <author initials="P." surname="Brunschwig" fullname="Patrick Brunschwig">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="EFAIL" target="https://efail.de">
  <front>
    <title>Efail: Breaking S/MIME and OpenPGP Email Encryption using Exfiltration Channels</title>
    <author initials="D." surname="Poddebniak" fullname="Damian Poddebniak">
      <organization></organization>
    </author>
    <author initials="C." surname="Dresen" fullname="Christian Dresen">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="PYTHON-SOP" target="https://pypi.org/project/sop/">
  <front>
    <title>SOP for python</title>
    <author initials="D." surname="Gillmor" fullname="Daniel Kahn Gillmor">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="RUST-SOP" target="https://sequoia-pgp.gitlab.io/sop-rs/">
  <front>
    <title>A Rust implementation of the Stateless OpenPGP Protocol</title>
    <author initials="J." surname="Winter" fullname="Justus Winter">
      <organization>Sequoia</organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="SEMVER" target="https://semver.org/">
  <front>
    <title>Semantic Versioning 2.0.0</title>
    <author initials="T." surname="Preston-Werner" fullname="Tom Preston-Werner">
      <organization></organization>
    </author>
    <date year="2013" month="June" day="18"/>
  </front>
</reference>
<reference anchor="SOP-JAVA" target="https://github.com/pgpainless/sop-java">
  <front>
    <title>Stateless OpenPGP Protocol for Java.</title>
    <author initials="P." surname="Schaub" fullname="Paul Schaub">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="UNICODE-NORMALIZATION" target="https://unicode.org/reports/tr15/">
  <front>
    <title>Unicode Normalization Forms</title>
    <author initials="K." surname="Whistler" fullname="Ken Whistler">
      <organization>Unicode Consortium</organization>
    </author>
    <date year="2019" month="February" day="04"/>
  </front>
</reference>



<reference anchor='I-D.draft-bre-openpgp-samples-01'>
   <front>
      <title>OpenPGP Example Keys and Certificates</title>
      <author fullname='Bjarni Rúnar Einarsson' initials='B. R.' surname='Einarsson'>
         <organization>Mailpile ehf</organization>
      </author>
      <author fullname='&quot;juga&quot;' initials='' surname='&quot;juga&quot;'>
         <organization>Independent</organization>
      </author>
      <author fullname='Daniel Kahn Gillmor' initials='D. K.' surname='Gillmor'>
         <organization>American Civil Liberties Union</organization>
      </author>
      <date day='20' month='December' year='2019'/>
      <abstract>
	 <t>   The OpenPGP development community benefits from sharing samples of
   signed or encrypted data.  This document facilitates such
   collaboration by defining a small set of OpenPGP certificates and
   keys for use when generating such samples.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-bre-openpgp-samples-01'/>
   
</reference>



<reference anchor='RFC0959'>
<front>
<title>File Transfer Protocol</title>
<author fullname='J. Postel' initials='J.' surname='Postel'><organization/></author>
<author fullname='J. Reynolds' initials='J.' surname='Reynolds'><organization/></author>
<date month='October' year='1985'/>
<abstract><t>This memo is the official specification of the File Transfer Protocol    (FTP) for the DARPA Internet community.  The primary intent is to    clarify and correct the documentation of the FTP specification, not to    change the protocol.  The following new optional commands are included    in this edition of the specification:  Change to Parent Directory    (CDUP), Structure Mount (SMNT), Store Unique (STOU), Remove Directory    (RMD), Make Directory (MKD), Print Directory (PWD), and System (SYST).    Note that this specification is compatible with the previous edition.</t></abstract>
</front>
<seriesInfo name='STD' value='9'/>
<seriesInfo name='RFC' value='959'/>
<seriesInfo name='DOI' value='10.17487/RFC0959'/>
</reference>



<reference anchor='RFC5321'>
<front>
<title>Simple Mail Transfer Protocol</title>
<author fullname='J. Klensin' initials='J.' surname='Klensin'><organization/></author>
<date month='October' year='2008'/>
<abstract><t>This document is a specification of the basic protocol for Internet electronic mail transport.  It consolidates, updates, and clarifies several previous documents, making all or parts of most of them obsolete.  It covers the SMTP extension mechanisms and best practices for the contemporary Internet, but does not provide details about particular extensions.  Although SMTP was designed as a mail transport and delivery protocol, this specification also contains information that is important to its use as a &quot;mail submission&quot; protocol for &quot;split-UA&quot; (User Agent) mail reading systems and mobile environments.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5321'/>
<seriesInfo name='DOI' value='10.17487/RFC5321'/>
</reference>




    </references>


<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>This work was inspired by Justus Winter's <xref target="OpenPGP-Interoperability-Test-Suite"/>.</t>

<t>The following people contributed helpful feedback and considerations to this draft, but are not responsible for its problems:</t>

<t><list style="symbols">
  <t>Allan Nordhøy</t>
  <t>Antoine Beaupré</t>
  <t>Edwin Taylor</t>
  <t>Heiko Schaefer</t>
  <t>Jameson Rollins</t>
  <t>Justus Winter</t>
  <t>Paul Schaub</t>
  <t>Vincent Breitmoser</t>
</list></t>

</section>
<section anchor="future-work"><name>Future Work</name>

<t><list style="symbols">
  <t>certificate transformation into popular publication forms:
  <list style="symbols">
      <t>WKD</t>
      <t>DANE OPENPGPKEY</t>
      <t>Autocrypt</t>
    </list></t>
  <t><spanx style="verb">sop encrypt</spanx> -- specify compression? (see <xref target="compression"/>)</t>
  <t><spanx style="verb">sop encrypt</spanx> -- specify padding policy/mechanism?</t>
  <t><spanx style="verb">sop decrypt</spanx> -- how can it more safely handle zip bombs?</t>
  <t><spanx style="verb">sop decrypt</spanx> -- what should it do when encountering weakly-encrypted (or unencrypted) input?</t>
  <t><spanx style="verb">sop encrypt</spanx> -- minimize metadata (e.g. <spanx style="verb">--throw-keyids</spanx>)?</t>
  <t>specify an error if a <spanx style="verb">DATE</spanx> arrives as input without a time zone?</t>
  <t>add considerations about what it means for armored <spanx style="verb">CERTS</spanx> to contain multiple certificates -- multiple armorings?  one big blob?</t>
  <t>do we need an interface or option (for performance?) with the semantics that <spanx style="verb">sop</spanx> doesn't validate certificates internally, it just accepts whatever's given as legit data? (see <xref target="cert-validity-performance"/>)</t>
  <t>do we need to be able to convert a message with a text-based signature to a CSF <spanx style="verb">INLINESIGNED</spanx> message? I'd rather not, given the additional complications.</t>
</list></t>

</section>
<section anchor="document-history"><name>Document History</name>

<section anchor="substantive-changes-between-05-and-06"><name>Substantive Changes between -05 and -06:</name>

<t><list style="symbols">
  <t><spanx style="verb">version</spanx>: add <spanx style="verb">--sop-spec</spanx> argument</t>
  <t><spanx style="verb">encrypt</spanx>: add <spanx style="verb">--profile</spanx> argument</t>
</list></t>

</section>
<section anchor="substantive-changes-between-04-and-05"><name>Substantive Changes between -04 and -05:</name>

<t><list style="symbols">
  <t><spanx style="verb">decrypt</spanx>: change <spanx style="verb">--verify-out</spanx> to <spanx style="verb">--verifications-out</spanx></t>
  <t><spanx style="verb">encrypt</spanx>: add missing <spanx style="verb">--with-key-password</spanx></t>
  <t>add the concept of "profiles", use with <spanx style="verb">generate-key</spanx></t>
  <t>include table of known implementations</t>
  <t><spanx style="verb">VERIFICATIONS</spanx> can now indicate the type of the signature (<spanx style="verb">mode:text</spanx> or <spanx style="verb">mode:binary</spanx>)</t>
</list></t>

</section>
<section anchor="substantive-changes-between-03-and-04"><name>Substantive Changes between -03 and -04:</name>

<t><list style="symbols">
  <t>Reinforce that PASSWORD and SESSIONKEY are indirect data types</t>
  <t><spanx style="verb">encrypt</spanx>: remove <spanx style="verb">--as=mime</spanx> option</t>
  <t>Handle password-locked secret key material: add <spanx style="verb">--with-key-password</spanx> options to <spanx style="verb">generate-key</spanx>, <spanx style="verb">sign</spanx>, and <spanx style="verb">decrypt</spanx>.</t>
  <t>Introduce <spanx style="verb">INLINESIGNED</spanx> message type (<xref target="inlinesigned"/>)</t>
  <t>Rename <spanx style="verb">detach-inband-signature-and-message</spanx> to <spanx style="verb">inline-detach</spanx>, clarify its possible inputs</t>
  <t>Add <spanx style="verb">inline-verify</spanx></t>
  <t>Add <spanx style="verb">inline-sign</spanx></t>
</list></t>

</section>
<section anchor="substantive-changes-between-02-and-03"><name>Substantive Changes between -02 and -03:</name>

<t><list style="symbols">
  <t>Added <spanx style="verb">--micalg-out</spanx> parameter to <spanx style="verb">sign</spanx></t>
  <t>Change from <spanx style="verb">KEY</spanx> to <spanx style="verb">KEYS</spanx> (permit multiple secret keys in each blob)</t>
  <t>New error code: <spanx style="verb">KEY_CANNOT_SIGN</spanx></t>
  <t><spanx style="verb">version</spanx> now has <spanx style="verb">--backend</spanx> and <spanx style="verb">--extended</spanx> options</t>
</list></t>

</section>
<section anchor="substantive-changes-between-01-and-02"><name>Substantive Changes between -01 and -02:</name>

<t><list style="symbols">
  <t>Added mnemonics for return codes</t>
  <t><spanx style="verb">decrypt</spanx> should fail when asked to output to a pre-existing file</t>
  <t>Removed superfluous <spanx style="verb">--armor</spanx> option</t>
  <t>Much more specific about what <spanx style="verb">armor --label=auto</spanx> should do</t>
  <t><spanx style="verb">armor</spanx> and <spanx style="verb">dearmor</spanx> are now fully idempotent, but work only well-formed OpenPGP streams</t>
  <t>Dropped <spanx style="verb">armor --allow-nested</spanx></t>
  <t>Specified what <spanx style="verb">encrypt --as=</spanx> means</t>
  <t>New error code: <spanx style="verb">KEY_IS_PROTECTED</spanx></t>
  <t>Documented expectations around human-readable, human-transferable passwords</t>
  <t>New subcommand: <spanx style="verb">detach-inband-signature-and-message</spanx></t>
  <t>More specific guidance about special designators like <spanx style="verb">@FD:</spanx> and <spanx style="verb">@ENV:</spanx>, including new error codes <spanx style="verb">UNSUPPORTED_SPECIAL_PREFIX</spanx> and <spanx style="verb">AMBIGUOUS_INPUT</spanx></t>
</list></t>

</section>
<section anchor="substantive-changes-between-00-and-01"><name>Substantive Changes between -00 and -01:</name>

<t><list style="symbols">
  <t>Changed <spanx style="verb">generate</spanx> subcommand to <spanx style="verb">generate-key</spanx></t>
  <t>Changed <spanx style="verb">convert</spanx> subcommand to <spanx style="verb">extract-cert</spanx></t>
  <t>Added "Input String Types" section as distinct from indirect I/O</t>
  <t>Made implicit arguments potentially explicit (e.g. <spanx style="verb">sop armor --label=auto</spanx>)</t>
  <t>Added <spanx style="verb">--allow-nested</spanx> to <spanx style="verb">sop armor</spanx> to make it idempotent by default</t>
  <t>Added fingerprint of signing (sub)key to <spanx style="verb">VERIFICATIONS</spanx> output</t>
  <t>Dropped <spanx style="verb">--mode</spanx> and <spanx style="verb">--session-key</spanx> arguments for <spanx style="verb">sop encrypt</spanx> (no plausible use, not needed for interop)</t>
  <t>Added <spanx style="verb">--with-session-key</spanx> argument to <spanx style="verb">sop decrypt</spanx> to allow for session-key-based decryption</t>
  <t>Added examples to each subcommand</t>
  <t>More detailed error codes for <spanx style="verb">sop encrypt</spanx></t>
  <t>Move from <spanx style="verb">CERT</spanx> to <spanx style="verb">CERTS</spanx> (each <spanx style="verb">CERTS</spanx> argument might contain multiple certificates)</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
EG/+H42tPw/jIwEA

-->

</rfc>

