Package sop.operation
Interface Encrypt
-
public interface Encrypt
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Encryptmode(EncryptAs mode)Sets encryption mode.EncryptnoArmor()Disable ASCII armor encoding.default Readyplaintext(byte[] plaintext)Encrypt the given data yielding the ciphertext.Readyplaintext(InputStream plaintext)Encrypt the given data yielding the ciphertext.default EncryptsignWith(byte[] key)Adds the signer key.EncryptsignWith(InputStream key)Adds the signer key.default EncryptwithCert(byte[] cert)Encrypt with the given cert.EncryptwithCert(InputStream cert)Encrypt with the given cert.EncryptwithKeyPassword(byte[] password)Provide the password for the secret key used for signing.default EncryptwithKeyPassword(String password)Provide the password for the secret key used for signing.EncryptwithPassword(String password)Encrypt with the given password.
-
-
-
Method Detail
-
noArmor
Encrypt noArmor()
Disable ASCII armor encoding.- Returns:
- builder instance
-
mode
Encrypt mode(EncryptAs mode) throws SOPGPException.UnsupportedOption
Sets encryption mode.- Parameters:
mode- mode- Returns:
- builder instance
- Throws:
SOPGPException.UnsupportedOption- if this option is not supported
-
signWith
Encrypt signWith(InputStream key) throws SOPGPException.KeyCannotSign, SOPGPException.UnsupportedAsymmetricAlgo, SOPGPException.BadData, IOException
Adds the signer key.- Parameters:
key- input stream containing the encoded signer key- Returns:
- builder instance
- Throws:
SOPGPException.KeyCannotSign- if the key cannot be used for signingSOPGPException.UnsupportedAsymmetricAlgo- if the key uses an unsupported asymmetric algorithmSOPGPException.BadData- if theInputStreamdoes not contain an OpenPGP keyIOException- in case of an IO error
-
signWith
default Encrypt signWith(byte[] key) throws SOPGPException.KeyCannotSign, SOPGPException.UnsupportedAsymmetricAlgo, SOPGPException.BadData, IOException
Adds the signer key.- Parameters:
key- byte array containing the encoded signer key- Returns:
- builder instance
- Throws:
SOPGPException.KeyCannotSign- if the key cannot be used for signingSOPGPException.UnsupportedAsymmetricAlgo- if the key uses an unsupported asymmetric algorithmSOPGPException.BadData- if the byte array does not contain an OpenPGP keyIOException- in case of an IO error
-
withKeyPassword
default Encrypt withKeyPassword(String password) throws SOPGPException.PasswordNotHumanReadable, SOPGPException.UnsupportedOption
Provide the password for the secret key used for signing.- Parameters:
password- password- Returns:
- builder instance
- Throws:
SOPGPException.PasswordNotHumanReadable- if the password is not human-readableSOPGPException.UnsupportedOption- if key password are not supported
-
withKeyPassword
Encrypt withKeyPassword(byte[] password) throws SOPGPException.PasswordNotHumanReadable, SOPGPException.UnsupportedOption
Provide the password for the secret key used for signing.- Parameters:
password- password- Returns:
- builder instance
- Throws:
SOPGPException.PasswordNotHumanReadable- if the password is not human-readableSOPGPException.UnsupportedOption- if key password are not supported
-
withPassword
Encrypt withPassword(String password) throws SOPGPException.PasswordNotHumanReadable, SOPGPException.UnsupportedOption
Encrypt with the given password.- Parameters:
password- password- Returns:
- builder instance
- Throws:
SOPGPException.PasswordNotHumanReadable- if the password is not human-readableSOPGPException.UnsupportedOption- if this option is not supported
-
withCert
Encrypt withCert(InputStream cert) throws SOPGPException.CertCannotEncrypt, SOPGPException.UnsupportedAsymmetricAlgo, SOPGPException.BadData, IOException
Encrypt with the given cert.- Parameters:
cert- input stream containing the encoded cert.- Returns:
- builder instance
- Throws:
SOPGPException.CertCannotEncrypt- if the certificate is not encryption capableSOPGPException.UnsupportedAsymmetricAlgo- if the certificate uses an unsupported asymmetric algorithmSOPGPException.BadData- if theInputStreamdoes not contain an OpenPGP certificateIOException- in case of an IO error
-
withCert
default Encrypt withCert(byte[] cert) throws SOPGPException.CertCannotEncrypt, SOPGPException.UnsupportedAsymmetricAlgo, SOPGPException.BadData, IOException
Encrypt with the given cert.- Parameters:
cert- byte array containing the encoded cert.- Returns:
- builder instance
- Throws:
SOPGPException.CertCannotEncrypt- if the certificate is not encryption capableSOPGPException.UnsupportedAsymmetricAlgo- if the certificate uses an unsupported asymmetric algorithmSOPGPException.BadData- if the byte array does not contain an OpenPGP certificateIOException- in case of an IO error
-
plaintext
Ready plaintext(InputStream plaintext) throws IOException, SOPGPException.KeyIsProtected
Encrypt the given data yielding the ciphertext.- Parameters:
plaintext- plaintext- Returns:
- input stream containing the ciphertext
- Throws:
IOException- in case of an IO errorSOPGPException.KeyIsProtected- if at least one signing key cannot be unlocked
-
plaintext
default Ready plaintext(byte[] plaintext) throws IOException, SOPGPException.KeyIsProtected
Encrypt the given data yielding the ciphertext.- Parameters:
plaintext- plaintext- Returns:
- input stream containing the ciphertext
- Throws:
IOException- in case of an IO errorSOPGPException.KeyIsProtected- if at least one signing key cannot be unlocked
-
-