This code works with non FIPS Crypto++:
FileSource(pathin, true, new DefaultEncryptorWithMAC(DATA, new FileSink
(pathout)));
How can I do the same using the FIPS version above?
I have read that it is possible to link in both a non-FIPS version and
the FIPS version DLL:
http://www.codeproject.com/KB/tips/CryptoPPIntegration.aspx
Any recommendation?
Thanks.