[Bug 34738] PageFault when generating a MD5 Hash

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Oct 17 11:16:33 CDT 2013


http://bugs.winehq.org/show_bug.cgi?id=34738

Nikolay Sivov <bunglehead at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1

--- Comment #11 from Nikolay Sivov <bunglehead at gmail.com> 2013-10-17 11:16:33 CDT ---
The problem is CryptHashData() call at provider side. Application calls it with
CRYPT_USERDATA flag and RSAENH provider fails if flags are not zero:

---
RSAENH_CPHashData(...)
---
    if (dwFlags)
    {
        SetLastError(NTE_BAD_FLAGS);
        return FALSE;
    }
---

If this check is removed it no longer crashes, but doesn't do anything useful
either, but after looking at script I think it's intentional.

I'll add some tests for that call first, let's see how it goes. Confirming.

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list