Package sop.operation
Interface InlineSign
-
- All Superinterfaces:
AbstractSign<InlineSign>
public interface InlineSign extends AbstractSign<InlineSign>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Readydata(byte[] data)Signs data.Readydata(InputStream data)Signs data.InlineSignmode(InlineSignAs mode)Sets the signature mode.-
Methods inherited from interface sop.operation.AbstractSign
key, key, noArmor, withKeyPassword, withKeyPassword
-
-
-
-
Method Detail
-
mode
InlineSign mode(InlineSignAs mode) throws SOPGPException.UnsupportedOption
Sets the signature mode. Note: This method has to be called beforeAbstractSign.key(InputStream)is called.- Parameters:
mode- signature mode- Returns:
- builder instance
- Throws:
SOPGPException.UnsupportedOption- if this option is not supported
-
data
Ready data(InputStream data) throws IOException, SOPGPException.KeyIsProtected, SOPGPException.ExpectedText
Signs data.- Parameters:
data- input stream containing data- Returns:
- ready
- Throws:
IOException- in case of an IO errorSOPGPException.KeyIsProtected- if at least one signing key cannot be unlockedSOPGPException.ExpectedText- if text data was expected, but binary data was encountered
-
data
default Ready data(byte[] data) throws IOException, SOPGPException.KeyIsProtected, SOPGPException.ExpectedText
Signs data.- Parameters:
data- byte array containing data- Returns:
- ready
- Throws:
IOException- in case of an IO errorSOPGPException.KeyIsProtected- if at least one signing key cannot be unlockedSOPGPException.ExpectedText- if text data was expected, but binary data was encountered
-
-