mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-09 18:29:48 +02:00
Rename DetachInbandSignatureAndMessage to InlineDetach
This commit is contained in:
parent
0bfc12c1e1
commit
fd9192995f
4 changed files with 8 additions and 8 deletions
|
@ -7,7 +7,7 @@ package sop;
|
|||
import sop.operation.Armor;
|
||||
import sop.operation.Dearmor;
|
||||
import sop.operation.Decrypt;
|
||||
import sop.operation.DetachInbandSignatureAndMessage;
|
||||
import sop.operation.InlineDetach;
|
||||
import sop.operation.Encrypt;
|
||||
import sop.operation.ExtractCert;
|
||||
import sop.operation.GenerateKey;
|
||||
|
@ -91,5 +91,5 @@ public interface SOP {
|
|||
*/
|
||||
Dearmor dearmor();
|
||||
|
||||
DetachInbandSignatureAndMessage detachInbandSignatureAndMessage();
|
||||
InlineDetach detachInbandSignatureAndMessage();
|
||||
}
|
||||
|
|
|
@ -14,13 +14,13 @@ import sop.Signatures;
|
|||
/**
|
||||
* Split cleartext signed messages up into data and signatures.
|
||||
*/
|
||||
public interface DetachInbandSignatureAndMessage {
|
||||
public interface InlineDetach {
|
||||
|
||||
/**
|
||||
* Do not wrap the signatures in ASCII armor.
|
||||
* @return builder
|
||||
*/
|
||||
DetachInbandSignatureAndMessage noArmor();
|
||||
InlineDetach noArmor();
|
||||
|
||||
/**
|
||||
* Detach the provided cleartext signed message from its signatures.
|
Loading…
Add table
Add a link
Reference in a new issue