Add javadoc to SignAs

This commit is contained in:
Paul Schaub 2022-05-24 21:07:50 +02:00
parent 33c8e5edc5
commit be2fd9de49
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -5,6 +5,13 @@
package sop.enums;
public enum SignAs {
/**
* Signature is made over the binary message.
*/
Binary,
/**
* Signature is made over the message in text mode.
*/
Text
}