Rename InlineSignAs.CleartextSigned to clearsigned, make options lowercase

Fixes #16
This commit is contained in:
Paul Schaub 2022-11-11 12:47:11 +01:00
parent 01beb99e43
commit c00109c2bf
1 changed files with 3 additions and 3 deletions

View File

@ -9,16 +9,16 @@ public enum InlineSignAs {
/** /**
* Signature is made over the binary message. * Signature is made over the binary message.
*/ */
Binary, binary,
/** /**
* Signature is made over the message in text mode. * Signature is made over the message in text mode.
*/ */
Text, text,
/** /**
* Signature is made using the Cleartext Signature Framework. * Signature is made using the Cleartext Signature Framework.
*/ */
CleartextSigned, clearsigned,
} }