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" when I call the Decrypt method. Google has been little help in tracking down decent code samples or explanations as to what this error means.

The following code is almost exactly a replication of what was happening in the VB6 code:

static string DecryptEncryptedText(string encryptedText, string secretKey)
{
    var encryptedDataObj = new CAPICOM.EncryptedData();
    encryptedDataObj.SetSecret(secretKey, CAPICOM_SECRET_TYPE.CAPICOM_SECRET_PASSWORD);
    encryptedDataObj.Decrypt(encryptedText);
    return encryptedDataObj.Content;
}
link|improve this question

Well, I've never met a ASN1 tag I like, so I have to agree they're all bad. I suspect you'll need to show the encryption code as well. – GregS Feb 13 '10 at 0:59
feedback

1 Answer

up vote 2 down vote accepted

When I get this error it has been because I used the wrong key to decrypt. Have you checked the encoding of your secretKey? I suspect the data was encrypted with an ANSI string in VB6 and you are using a Unicode string in your new code.

link|improve this answer
This is exactly the problem. VB6 defaults to ANSI (code page 1252). var ansi = Encoding.GetEncoding(1252); – William Edmondson Feb 16 '10 at 17:50
feedback

Your Answer

 
or
required, but never shown

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