I am using C# EncryptedXml
class and calling the method Encrypt(XmlElement, x509Cert)
.
The code looks like this:
Encrypted eXml = new EncryptedXml();
EncryptedData edElement = eXml.Encrypt(elementToEncrypt, Cert);
My program errors out saying "This implementation is not part of the Windows FIPS validated cryptographic algorithms" I have to use FIPS compliant algorithms.
Do you know of a replacement for this method that is FIPS compliant?