Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7427909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T08:39:35+00:00 2026-05-29T08:39:35+00:00

I am trying to decrypt using gpg.exe –passphrase-file my.passphrase –decrypt –output MTR241_20111124.htm MTR241_20111124.htm.gpg (without

  • 0

I am trying to decrypt using gpg.exe --passphrase-file my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg (without –batch and –yes option). I am also providing the encryption command if anyone cares to use it for testing gpg.exe --passphrase-file ..\BE\src\my.passphrase --symmetric --output MTR241_20111124.htm.gpg MTR241_20111124.htm.

There are two cases.
case 1: MTR241_20111124.htm file does not exist in the output dir. Both command prompt and captured output stream of exec gives same output.

C:\Eclipse\workspace2\sync_inbox>gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
Reading passphrase from file descriptor 3
gpg: CAST5 encrypted data
gpg: encrypted with 1 passphrase
gpg: WARNING: message was not integrity protected

The same messags gets printed by java exec and command prompt.

C:\Eclipse\workspace2\sync_inbox>gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
inp>gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
gpg: CAST5 encrypted data
gpg: encrypted with 1 passphrase
gpg: WARNING: message was not integrity protected

So far good enough

Case2: When the output file already exists as expected in command prompt it asked if I want to replace.

C:\Eclipse\workspace2\sync_inbox>gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
Reading passphrase from file descriptor 3
gpg: CAST5 encrypted data
gpg: encrypted with 1 passphrase
File `MTR241_20111124.htm' exists. Overwrite? (y/N) y
gpg: WARNING: message was not integrity protected

But this output is from java program which hangs after this first line. It does not print any line on console. If I enter ‘y’ in console, it does not accept the input and process. It simply hangs. I have to manually kill the process taskkill /F /IM gpg.exe only then the java console program accepts more commands and process.

C:\Eclipse\workspace2\sync_inbox>gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
inp>gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
gpg.exe  --passphrase-file ..\BE\src\my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg
    --hangs here-- 

The normal interactive commands of course works, say for ex:

F:\eclipse\workspace\HTMLProcessor\BEQuery>copy hello.txt world.txt
inp>copy hello.txt world.txt
copy hello.txt world.txt
Overwrite world.txt? (Yes/No/All): y
inp>y
y
        1 file(s) copied.

So here is my question why does it fail to capture output stream of gpg only when it asks for the prompt whether to replace the existing output file.

I already tried Runtime.exec(), ProcessBuilder, Plexus-Utils, ExpectJ, Ant to run this gpg.exe inside the java program all of them are showing the same result fails to capture output stream of the process in that special case. I even tried to write a .bat file to run the gpg --decrypt but even in that also it fails to capture output stream in above special case.

I think it matters, the origin of gpg.exe. Well I got it in portable git distribution, in the bin folder gpg.exe is available.

My question became really long and boring, but still for those who like to point out errors java code

package com.ycs.ezlink.scheduler.cmd;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import org.apache.log4j.Logger;

public class CmdRunner {
    private static Logger logger = Logger.getLogger(CmdRunner.class);

    static class StreamGobbler extends Thread
    {
        InputStream is;
        String type;

        StreamGobbler(InputStream is, String type)
        {
            this.is = is;
            this.type = type;
        }

        public void run() {
            try {
                System.out.println("in run!");
                    System.out.println(type);
                    final byte[] buffer = new byte[1];
                    for (int length = 0; (length = is.read(buffer)) != -1;) {
                        System.out.write(buffer, 0, length);
                    }
                } catch (IOException ioe) {
                    ioe.printStackTrace();
                }
        }
    }

    public static int process(String cmd){
        int exitVal = 0; 
        try {
            Runtime rt = Runtime.getRuntime();
             Process proc = rt.exec(cmd);
             // any error message?
             StreamGobbler errorGobbler = new 
                 StreamGobbler(proc.getErrorStream(), "ERROR");            

             // any output?
             StreamGobbler outputGobbler = new 
                 StreamGobbler(proc.getInputStream(), "OUTPUT");

             // kick them off
             errorGobbler.start();
             outputGobbler.start();

             // any error???
             System.out.println("Waiting for cmd process to complete " );
            exitVal = proc.waitFor();
             System.out.println("ExitValue: " + exitVal);
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }    
        return exitVal;
    }

    public static void main(String[] a) throws IOException, InterruptedException, TimeoutException, ExpectJException {
        String gzipCmd = "gpg.exe  --passphrase-file C:/Eclipse/workspace2/BE/src/my.passphrase --decrypt --output C:/Eclipse/workspace2/sync_inbox/MTR241_20111124.htm C:/Eclipse/workspace2/sync_inbox/MTR241_20111124.htm.gpg";  
        //CmdRunner.process(gzipCmd); ///--fails
        //ProcessBuilder pb = new ProcessBuilder("gpg", "--passphrase-file", "C:/Eclipse/workspace2/BE/src/my.passphrase",
        "--decrypt","--output","C:/Eclipse/workspace2/sync_inbox/MTR241_20111124.htm",
        "C:/Eclipse/workspace2/sync_inbox/MTR241_20111124.htm.gpg"); ///--fails
        ProcessBuilder pb = new ProcessBuilder ("cmd");
        pb.redirectErrorStream(true);
        Process process = pb.start();
        OutputStream stdin = process.getOutputStream ();
        InputStream stderr = process.getErrorStream ();
        InputStream stdout = process.getInputStream ();
         StreamGobbler errorGobbler = new StreamGobbler(stderr, "ERROR");            
         errorGobbler.start();
         StreamGobbler stdoutGobbler = new StreamGobbler(stdout, "DEBUG");            
         stdoutGobbler.start();

         BufferedReader scan = new BufferedReader(new InputStreamReader(System.in));
         String line;
         while ((line = scan.readLine())!= null) {
                String input = line;
                System.out.println("inp>"+input);
                if (input.trim().equals("exit")) {
                    stdin.write("exit\r\n".getBytes()); 
                    stdin.flush();
                    break;
                } else {
                     stdin.write((input+"\r\n").getBytes());
                     stdin.flush();
                }
            }
         System.out.println("exited..");
        int returnCode  = process.waitFor();
        System.out.println(returnCode);
    }
}

One last word if I use the gpg --batch option, it no more prompts for the y/N input, so then it runs smoothly. But I am just curious to know, why would there be this problem. Although I have a feeling that gpg.exe was originally written for Unix/Linux like platform, so there might be some input output file redirection, but I would like to know more on the root cause of it, so that next time I know what to look for.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T08:39:36+00:00Added an answer on May 29, 2026 at 8:39 am

    The output that you see in the terminal is a merged result from the standard output stream, standard error stream and console. You can capture standard output and standard error stream. But you cannot capture console. This is why gpg intentionally uses console directly, to prevent you from capturing. Why they do this is debatable.

    Bottom line: you will not be able to capture Input or Output Stream of a program that deals directly with the console.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to encrypt a text file using Perl and then decrypt it using
I'm trying to decrypt an X509 cert on an android device using Bouncycastle. However,
Trying to write a couple of functions that will encrypt or decrypt a file
Hi ive been trying to use System.Security.Cryptography to encrypt and decrypt a file but
I am trying to decrypt data using tripleDes. Everything looks fine but it has
I'm trying to decrypt a string using mcrypt_decrypt, but I'm not sure how to
I'm trying to encrypt and decrypt data using RSA in C#. I have the
I'm trying to decrypt an RSA encrypted message using the public key. Using Crypt::OpenSSL::RSA
I am trying to write encrypt/decrypt methods for AES 256 CBC encryption using PKCS5Padding
I'm trying to encrypt/decrypt files with PBE using AES. I'm using Bouncy Casle library(lightweight

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.