How can I get X509Certificate from certificate store and then generate XML SignatureData in .net C#?

link|improve this question

29% accept rate
feedback

1 Answer

up vote 0 down vote accepted

AFAIK, certificates are not saved by XML Format , you should combine it by yourself.

Is this what you want ?

   static void Main(string[] args)
    {
        X509Certificate2 cer = new X509Certificate2();
        cer.Import(@"D:\l.cer");
        X509Store store = new X509Store(StoreLocation.CurrentUser);
        store.Certificates.Add(cer);

         X509Certificate2Collection cers = store.Certificates.Find(X509FindType.FindBySubjectName, "My Cert's Subject Name", false);
        if (cers.Count>0)
        {
            cer = cers[0];
        };
        store.Close();
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.