CryptGetHashParam

[DllImport("Crypt32.dll", SetLastError = true)]
public static extern bool CryptGetHashParam(
   IntPtr hHash,
   uint dwParam,
   byte[] pbData,
   ref uint pdwDataLen,
   uint dwFlags
);

Microsoft documentation: Link

Last updated