How do i disassemble function or a Library on windows?
i have installed windbg. I want to disassemble some Cryptographic function from Crypt32.dll. How do i do that ?
second Question what function from cyrpt32 library end up calling which kernel mode driver ?
“Open Crash Dump” for an .exe/.dll will open the disassembler mode.
wrote in message news:xxxxx@ntdev… > How do i disassemble function or a Library on windows? > i have installed windbg. I want to disassemble some Cryptographic function from Crypt32.dll. How do i do that ? > second Question what function from cyrpt32 library end up calling which kernel mode driver ? > > Kind Regards, >
your second question is not quiet understandable
every function in crypt32 that calls some of the advapi . kernel , or
ntdll .dlls function can end up in kernel
running !imports on crypt32 says it imports from advapi32
this function calls RegOpenKey which calls NtOpenKey which goes into kernel
clarify
On 10/26/15, Maxim S. Shatskih wrote: > “Open Crash Dump” for an .exe/.dll will open the disassembler mode. > > wrote in message news:xxxxx@ntdev… >> How do i disassemble function or a Library on windows? >> i have installed windbg. I want to disassemble some Cryptographic function >> from Crypt32.dll. How do i do that ? >> second Question what function from cyrpt32 library end up calling which >> kernel mode driver ? >> >> Kind Regards, >> > > — > NTDEV is sponsored by OSR > > Visit the list at: http://www.osronline.com/showlists.cfm?list=ntdev > > OSR is HIRING!! See http://www.osr.com/careers > > For our schedule of WDF, WDM, debugging and other seminars visit: > http://www.osr.com/seminars > > To unsubscribe, visit the List Server section of OSR Online at > http://www.osronline.com/page.cfm?name=ListServer >