.
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 CryptEncrypt(IntPtr hKey, IntPtr hHash, int Final, uint dwFlags, byte[] pbData, ref uint pdwDataLen, uint dwBufLen);
.
Declare Function CryptEncrypt Lib "advapi32.dll" (ByVal hkey As IntPtr, _
.
.
The CryptEncryptMessage function encrypts and encodes a message.
3/24/2008 6:28:48 AM - chadich@yahoo.com-65.199.113.40
.
public static extern bool CryptEncryptMessage(
.
Declare Function CryptEncryptMessage Lib "crypt32.dll" (TODO) As TODO
.
.
internal static extern int NCryptEncrypt(IntPtr hKey,
.
Declare Function NCryptEncrypt Lib "ncrypt.dll" (TODO) As TODO
.