No output stream for detached signatures, makes no sense to pipe it through
This commit is contained in:
@@ -543,8 +543,7 @@ public class PgpSignEncrypt extends BaseOperation {
|
|||||||
int length;
|
int length;
|
||||||
byte[] buffer = new byte[1 << 16];
|
byte[] buffer = new byte[1 << 16];
|
||||||
while ((length = in.read(buffer)) > 0) {
|
while ((length = in.read(buffer)) > 0) {
|
||||||
// pipe input stream directly into output stream, no changes to data
|
// no output stream is written, no changed to original data!
|
||||||
mOutStream.write(buffer, 0, length);
|
|
||||||
|
|
||||||
signatureGenerator.update(buffer, 0, length);
|
signatureGenerator.update(buffer, 0, length);
|
||||||
|
|
||||||
|
|||||||
2
extern/openpgp-api-lib
vendored
2
extern/openpgp-api-lib
vendored
Submodule extern/openpgp-api-lib updated: f712a26ab6...76d7b17f11
Reference in New Issue
Block a user