mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-09 10:19:47 +02:00
Add test for signing with protected key without password
This commit is contained in:
parent
0d9db2bdd3
commit
c95ca8fedc
2 changed files with 28 additions and 1 deletions
|
@ -96,7 +96,11 @@ public class DetachedSignExternal implements DetachedSign {
|
|||
}
|
||||
|
||||
data.close();
|
||||
processOut.close();
|
||||
try {
|
||||
processOut.close();
|
||||
} catch (IOException e) {
|
||||
// Ignore Stream closed
|
||||
}
|
||||
|
||||
while ((r = processIn.read(buf)) > 0) {
|
||||
outputStream.write(buf, 0 , r);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue