C#使用PGP -ka命令重定向standardinput

时间:2008-11-20 11:37:25

标签: c#

我遇到的问题看起来真的很愚蠢。我一定是想念一些傻瓜。我们的一台生产服务器上有一个PGP密钥环。不允许以交互方式登录其所属的用户帐户以确保安全性。我们的问题是我们有时需要添加新密钥而不能轻易做到这一点。所以我们认为我们可以创建一个快速控制台应用程序,它将作为其ID运行,并通过命令行调用PGP命令。

该命令被调用,但它要求输入以确认我们正在做什么。我们的问题是我们发送到standardinput的“y”从不显示,密钥未经验证。

这是代码:

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using System.DirectoryServices;
using System.Threading;

namespace TestConsoleApp
{
    class RegExValidator
    {
        private System.Diagnostics.Process myProcess;

        public RegExValidator()
        {
        }

        public static void Main(string[] args)
        {
            RegExValidator myValidator = new RegExValidator();
            myValidator.InstallKeys("C:\\Test\\batch.asc", "batch.asc");
        }


        private void InstallKeys(string keyPath, string keyName)
        {
            myProcess = new System.Diagnostics.Process();
            myProcess.StartInfo.RedirectStandardInput = true;
            myProcess.StartInfo.CreateNoWindow = false;
            myProcess.StartInfo.UseShellExecute = false;
            myProcess.StartInfo.FileName = "pgp";
            myProcess.StartInfo.Arguments = "-ka " + keyPath + "";
            myProcess.Start();

            StreamWriter myInput = myProcess.StandardInput;
            myInput.AutoFlush = true;
            Thread.Sleep(3000);

            myInput.WriteLine("y");

            myInput.WriteLine(Environment.NewLine);

        }

    }

}

这是我们在命令行上获得的输出。

    C:\Test>TestConsoleApp.exe
    Pretty Good Privacy(tm) Version 6.5.2
    (c) 1999 Network Associates Inc.
    Uses the BSafe(tm) Toolkit, which is copyright RSA Data Security, Inc.
    Export of this software may be restricted by the U.S. government.

    WARNING: Environmental variable TZ is not       defined, so GMT timestamps
            may be wrong.  See the PGP User's Guide to properly define TZ

    Looking for new keys...
    DSS  2048/1024 0xDE053A3D 2007/05/29 Batch Interface <batch@netgiro.com>
    sig?           0xDE053A3D             (Unknown signator, can't be checked)

    keyfile contains 1 new keys. Add these keys to keyring ? (Y/n)
    C:\Test>

有人可以帮忙吗?

由于

修改

我们尝试了这个过程,但是我们只是移动了一个文件,而不是PGP,我们得到了Y / N框,这很有效。看起来你可能无法用PGP做到这一点。不知道为什么。

1 个答案:

答案 0 :(得分:1)

消息

keyfile contains 1 new keys. Add these keys to keyring ? (Y/n)

建议使用大写字母Y 进行回复。尝试将您的电话改为:

myInput.WriteLine("Y");

(我没有安装PGP进行检查,但遇到了其他坚持使用的命令行界面。)

要尝试的另一件事是flushing stream buffers,它会清除流的所有缓冲区并导致任何缓冲的数据写入底层设备:

myInput.WriteLine("Y");
myInput.Flush();