Fix external armor and dearmor commands

This commit is contained in:
Paul Schaub 2023-01-12 16:04:22 +01:00
parent b15acc79b3
commit 951cf9cbca
2 changed files with 2 additions and 2 deletions

View File

@ -35,6 +35,6 @@ public class ArmorExternal implements Armor {
@Override
public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList);
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList, data);
}
}

View File

@ -28,6 +28,6 @@ public class DearmorExternal implements Dearmor {
@Override
public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList);
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList, data);
}
}