M
Morris Neuman
Is there a System.Security.Cryptography class or method that is compatable
with the C++ CryptoProvider MS_ENHANCED_PROV. So I can then enc/decrypt in
C# Windows form files that were encrypted in c++ with CryptoProvider
MS_ENHANCED_PROV?
I have encrypted a file in a C++ program using:
CryptAcquireContext(&hCryptProv, NULL, MS_ENHANCED_PROV, PROV_RSA_FULL,
0))
'
'
'
(CryptCreateHash(hCryptProv, CALG_MD5, 0, 0, &hHash))
.....
etc.
as per the documentation on Win 32 and Com Deve. - CryptAcquireContext()
I don't see The MS Enhanced Crypto Provider in the
System.Security.Cryptography class. Is this doable? Do I have to use only
the C++ Crypto Provider to decrypt the file ?
with the C++ CryptoProvider MS_ENHANCED_PROV. So I can then enc/decrypt in
C# Windows form files that were encrypted in c++ with CryptoProvider
MS_ENHANCED_PROV?
I have encrypted a file in a C++ program using:
CryptAcquireContext(&hCryptProv, NULL, MS_ENHANCED_PROV, PROV_RSA_FULL,
0))
'
'
'
(CryptCreateHash(hCryptProv, CALG_MD5, 0, 0, &hHash))
.....
etc.
as per the documentation on Win 32 and Com Deve. - CryptAcquireContext()
I don't see The MS Enhanced Crypto Provider in the
System.Security.Cryptography class. Is this doable? Do I have to use only
the C++ Crypto Provider to decrypt the file ?