.
internal static extern int NCryptDecrypt(
.
Declare Function NCryptDecrypt Lib "ncrypt.dll" (TODO) As TODO
.
.
public static extern bool CryptDecryptMessage(
.
Declare Function CryptDecryptMessage Lib "crypt32.dll" (TODO) As TODO
.
.
The CryptDecrypt function decrypts data previously encrypted using the CryptEncrypt function.
11/14/2007 10:36:46 AM - Carl Mailloux-209.226.94.110
Encrypts the data in pbData using the encryption key pointed to by hKey which contains the encryption algorithm that is used.
4/10/2007 8:13:06 AM - Hannibal-74.92.133.141
.
public static extern bool CryptDecrypt(IntPtr hKey, IntPtr hHash, int Final, uint dwFlags, byte[] pbData, ref uint pdwDataLen);
.
Declare Function CryptDecrypt Lib "advapi32.dll" (ByVal hkey As IntPtr, _
.