Tagged Questions

7
votes
3answers
932 views

CAPICOM - Verify SignedCode is from a Trusted Publisher without UI

I'm using CAPICOM in a .NET 3.0 C# app to check an Authenticode signature on an exe file. I need to make sure that the certificate is listed as a Trusted Publisher. Using signedCode.Verify(true) will ...
3
votes
3answers
191 views

CAPICOM vs P/Invoke

I would like to use CryptoAPI in C# to access certificate store and sign message. This MSDN article "CAPICOM: CryptoAPI Made Easy" shows 2 way to do that: using CAPICOM or P/Invoke. Which is best? ...
3
votes
2answers
321 views

Differences between CAPICOM TripleDES and System.Security.Cryptography TripleDES

I'm trying to move away from using CAPICOM since I can no longer use it (64-bit Windows 7 machine). The existing code for using TripleDES is like this: EncryptedDataClass cryptic = new ...
1
vote
1answer
590 views

Replace CAPICOM with .NET, validate certificate

My component is responsible for downloading files from the server. As part of file validation I have used CAPICOM (SignedCode object) to validate if a certificate contains a specific string and call ...
0
votes
1answer
294 views

Digital Signature using CAPICOM needs to be 1024 bits long

We are trying to sign documents using RSA-SHA1 hash. We have tried using the Crypt32 lib and we are getting signature (DS) length of 1024 bits (172 bytes after BASE-64) which is proper. When we try to ...
0
votes
1answer
628 views

CAPICOM Decrypt() errors with “ASN1 bad tag value met”

I have a large amount of data encrypted with the CAPICOM library through our legacy VB6 applications. I need to access this data from a .Net 3.5 app but am getting the error: "ASN1 bad tag value met" ...