3

PgpDecryptというクラスを使用して、クライアントから提供されたこのサンプルファイルを復号化しようとしました。しかし、コードがこの行に来ると:

Stream clear = pbe.GetDataStream(privKey);

エラーを返します: 秘密鍵を復号化する例外

これが私の復号化コードです:

PgpDecrypt test = new PgpDecrypt(string.Concat(pathh, "TestDecryptionFile"),
                                             string.Concat(pathh, "mypgpprivatekey.key"),
                                             "mypassphrase",
                                             @"d:/test/",
                                             string.Concat(pathh, "clientpublickey.key"));

FileStream fs = File.Open(string.Concat(pathh, "TestDecryptionFile"), FileMode.Open);
test.Decrypt(fs, @"d:\test\");

.NETのサードパーティライブラリとしてBouncyCastleを使用しています。

これを解決するためのアイデアは大きな助けになります。前もって感謝します!

4

1 に答える 1

5

BouncyCastleクラスPGPEncrypt、PGPDecrypt、およびPGPEncryptionKeysをフォローしている場合...

PGPEncryptionKeysクラスの下に、次のメソッドを追加します。

/// <summary>
/// Return the last key we can use to decrypt.
/// Note: A file can contain multiple keys (stored in "key rings")
/// </summary>
private PgpSecretKey GetLastSecretKey(PgpSecretKeyRingBundle secretKeyRingBundle)
{
    return (from PgpSecretKeyRing kRing in secretKeyRingBundle.GetKeyRings()
            select kRing.GetSecretKeys().Cast<PgpSecretKey>()
                                            .LastOrDefault(k => k.IsSigningKey))
                                            .LastOrDefault(key => key != null);
}

まだPgpEncryptionKeysクラス内にあるので、ReadSecretKeyメソッドが次のようになっていることを確認してください。

private PgpSecretKey ReadSecretKey(string privateKeyPath, bool toEncrypt)
{
    using (Stream keyIn = File.OpenRead(privateKeyPath))
    using (Stream inputStream = PgpUtilities.GetDecoderStream(keyIn))
    {
        PgpSecretKeyRingBundle secretKeyRingBundle = new PgpSecretKeyRingBundle(inputStream);
        PgpSecretKey foundKey = toEncrypt ? GetFirstSecretKey(secretKeyRingBundle) : GetLastSecretKey(secretKeyRingBundle);

        if (foundKey != null)
            return foundKey;
    }
    throw new ArgumentException("Can't find signing key in key ring.");
}

^ _ ^

于 2013-05-08T10:19:31.330 に答える