首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >BouncyCastle crypto dll c#入门

BouncyCastle crypto dll c#入门
EN

Stack Overflow用户
提问于 2010-10-15 17:28:39
回答 1查看 18.7K关注 0票数 5

我是密码学的初学者

我想为c#使用BouncyCastle .dll,但我找不到文档和示例。

具体地说,我需要使用来签署带有pkcs#7 (.p7m结果)的文件,并添加来自可信服务器(.m7m结果)的符合RFC3161的时间戳。

有人可以建议我在哪里可以找到这样做的例子和文档吗?

提前道谢

诚挚的问候

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2010-10-17 14:44:43

我在#SO上为另一个问题整理了这个小例子,但它也适用于你:

代码语言:javascript
复制
using System;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using Org.BouncyCastle.Cms;
using Org.BouncyCastle.Pkcs;
using Org.BouncyCastle.X509;

namespace ConsoleApplicationSignWithBouncyCastle
{
    class Program
    {

        [STAThread]
        static void Main(string[] args)
        {

            try
            {
                // First load a Certificate, filename/path and certificate password
                Cert = ReadCertFromFile("./test.pfx", "test");

                //  Select a binary file
                var dialog = new OpenFileDialog
                                 {
                                     Filter = "All files (*.*)|*.*",
                                     InitialDirectory = "./",
                                     Title = "Select a text file"
                                 };
                var filename = (dialog.ShowDialog() == DialogResult.OK) ? dialog.FileName : null;

                // Get the file
                var f = new FileStream(filename, System.IO.FileMode.Open);

                // Reading through this code stub to be sure I get it all :-)  [ Different subject entirely ]
                var fileContent = ReadFully(f);

                // Create the generator
                var dataGenerator = new CmsEnvelopedDataStreamGenerator();

                // Add receiver
                // Cert is the user's X.509 Certificate set bellow
                dataGenerator.AddKeyTransRecipient(Cert);

                // Make the output stream
                var outStream = new FileStream(filename + ".p7m", FileMode.Create);

                // Sign the stream
                var cryptoStream = dataGenerator.Open(outStream, CmsEnvelopedGenerator.Aes128Cbc);

                // Store in our binary stream writer and write the signed content
                var binWriter = new BinaryWriter(cryptoStream);
                binWriter.Write(fileContent);
            }
            catch (Exception ex)
            {
                Console.WriteLine("So, you wanna make an exception huh! : " + ex.ToString());
                Console.ReadKey();
            }
        }

        public static byte[] ReadFully(Stream stream)
        {
            stream.Seek(0, 0);
            var buffer = new byte[32768];
            using (var ms = new MemoryStream())
            {
                while (true)
                {
                    int read = stream.Read(buffer, 0, buffer.Length);
                    if (read <= 0)
                        return ms.ToArray();
                    ms.Write(buffer, 0, read);
                }
            }
        }

        public static Org.BouncyCastle.X509.X509Certificate Cert { get; set; }

        // This reads a certificate from a file.
        // Thanks to: http://blog.softwarecodehelp.com/2009/06/23/CodeForRetrievePublicKeyFromCertificateAndEncryptUsingCertificatePublicKeyForBothJavaC.aspx
        public static X509Certificate ReadCertFromFile(string strCertificatePath, string strCertificatePassword)
        {
            try
            {
                // Create file stream object to read certificate
                var keyStream = new FileStream(strCertificatePath, FileMode.Open, FileAccess.Read);

                // Read certificate using BouncyCastle component
                var inputKeyStore = new Pkcs12Store();
                inputKeyStore.Load(keyStream, strCertificatePassword.ToCharArray());

                //Close File stream
                keyStream.Close();

                var keyAlias = inputKeyStore.Aliases.Cast<string>().FirstOrDefault(n => inputKeyStore.IsKeyEntry(n));

                // Read Key from Alieases  
                if (keyAlias == null)
                    throw new NotImplementedException("Alias");

                //Read certificate into 509 format
                return (X509Certificate)inputKeyStore.GetCertificate(keyAlias).Certificate;
            }
            catch (Exception ex)
            {
                Console.WriteLine("So, you wanna make an exception huh! : " + ex.ToString());
            Console.ReadKey();
            return null;
        }
    }
} }

希望这能有所帮助。

我还把它贴到了on my blog上。

票数 8
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/3940998

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档