User Bruce - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:59:10Z http://stackoverflow.com/feeds/user/44574 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1793876/encryptmessage-returns-seceinvalidtoken 0 EncryptMessage returns SEC_E_INVALID_TOKEN Bruce 2009-11-25T00:14:35Z 2009-11-25T00:14:35Z <p>Hi</p> <p>When using the EncryptMessage (SChannel) from the win32 API with a valid context, I am supplying the four buffers in the correct order I get the SEC_E_INVALID_TOKEN response which according to the documentation is No SECBUFFER_DATA type buffer was found. I know that the set of pvBuffers should be allocated from contiguous memory for speed but for simplicity I have made it obvious what is what. Can anyone see what the problem could be?</p> <p>Thanks, Bruce</p> <p>The code is the following;</p> <pre><code>procedure TTCPSocket.SSPEncryptBuffer(SSPCtx: PCtxtHandle; InData: PAnsiChar; InDataLength: Cardinal); var SecStatus: TSecurityStatus; SecBufDesc: TSecBufferDesc; SecBufs: packed array [0 .. 3] of TSecBuffer; begin SecBufs[0].BufferType := SECBUFFER_STREAM_HEADER; SecBufs[0].cbBuffer := FSecPkgSizes.cbHeader; SecBufs[0].pvBuffer := AllocMem(FSecPkgSizes.cbHeader); SecBufs[1].BufferType := SECBUFFER_DATA; SecBufs[1].cbBuffer := InDataLength; SecBufs[1].pvBuffer := InData; SecBufs[2].BufferType := SECBUFFER_STREAM_TRAILER; SecBufs[2].cbBuffer := FSecPkgSizes.cbTrailer; SecBufs[2].pvBuffer := AllocMem(FSecPkgSizes.cbTrailer); SecBufs[3].BufferType := SECBUFFER_EMPTY; SecBufs[3].cbBuffer := 0; SecBufs[3].pvBuffer := nil; SecBufDesc.ulVersion := SECBUFFER_VERSION; SecBufDesc.cBuffers := 4; SecBufDesc.pBuffers := @SecBufs[0]; SecStatus := EncryptMessage(SSPCtx, 0, @SecBufDesc, 0); if SecStatus &lt;&gt; SEC_E_OK then begin // Error code.. end; end; </code></pre> http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials 0 AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-13T05:15:13Z 2009-11-17T06:03:40Z <p>Hi</p> <p>I have managed to open the certificate store by using CertOpenSystemStore and I can find my self signed certificate (created using OpenSSL) using CertFindCertificateInStore which I installed through the MMC console on Windows Vista Ultimate. However I am not sure what this error really means as I have been unable to spot the answer in the MSDN documentation. Is this a certificate problem? Or an OS problem, in the sense it should be a Windows Server OS for this to work?</p> <p>I am using Win32 API in Delphi 2010, but C examples are fine.</p> <p>Thanks, Bruce</p> http://stackoverflow.com/questions/1507136/tidtcpserver-not-reading-data-from-socket-sometimes/1507988#1507988 0 Answer by Bruce for TIdTCPServer not reading data from socket sometimes. Bruce 2009-10-02T06:23:33Z 2009-10-08T04:09:29Z <p>It looks like your code should look like this;</p> <pre><code>Socket := AContext.Connection.Socket; Socket.CheckForDataOnSource(10); if not Socket.InputBufferIsEmpty then begin Socket.InputBuffer.ExtractToBytes(RawBytes, -1, False, -1); SetLength(Buffer, Length(RawBytes)); Move(RawBytes[0], Buffer[1], Length(RawBytes)); // Do stuff with data here... end; AContext.Connection.CheckForGracefulDisconnect; </code></pre> <p>It doesn't matter what IOHandler you grab, so the generic one seems like the go.</p> <p>Sorry about answering my own question but it might be hepful for someone... maybe.</p> http://stackoverflow.com/questions/1507136/tidtcpserver-not-reading-data-from-socket-sometimes 0 TIdTCPServer not reading data from socket sometimes. Bruce 2009-10-02T00:05:05Z 2009-10-08T04:09:29Z <p>Hi</p> <p>I have the following code in the OnExecute of a TIdTCPServer (Delphi 2009 and Indy 10 that came with the installation) which is very similar to other examples on this site;</p> <pre><code> Socket := AContext.Connection.Socket; if Socket.CheckForDataOnSource(10) then begin if not Socket.InputBufferIsEmpty then begin Socket.InputBuffer.ExtractToBytes(RawBytes, -1, False, -1); SetLength(Buffer, Length(RawBytes)); Move(RawBytes[0], Buffer[1], Length(RawBytes)); // Do stuff with data here... end; end; AContext.Connection.CheckForGracefulDisconnect; </code></pre> <p>It doesn't read the data in sometimes as CheckForDataOnSource(10) returns False. However if I stop the debugger at that line I can see the data I sent in the InputBuffer's bytes. Are there any other setup things I should do or other ways to force this to work all the time. This code is run bunch of times but always fails on the CheckForDataOnSource(10).</p> <p>Also as a side note, I notice in code for Indy around the place that some people grab the AContext.Connection.IOHandler instead of the AContext.Connection.Socket and do the same things as the code above, what is the "right" one to use.</p> <p>Thanks </p> <p>Bruce</p> http://stackoverflow.com/questions/1225527/vista-64-bit-bsod-when-running-a-delphi-2009-application 0 Vista 64 bit BSOD when running a Delphi 2009 Application. Bruce 2009-08-04T02:48:08Z 2009-08-04T03:15:33Z <p>Hi </p> <p>I have an application that I have converted to Delphi 2009 I have "String format checking" On and the standard memory manager. I downloaded the MS debugging tools at <a href="http://www.microsoft.com/whdc/devtools/debugging/install64bit.mspx" rel="nofollow">http://www.microsoft.com/whdc/devtools/debugging/install64bit.mspx</a> and got some debug files but I am not sure what to make of them. I would like some pointers on where to go from here. Below is the top part of the debug file (bottom has all the drivers loaded);</p> <pre> Opened log file 'c:\debuglog.txt' 1: kd> .sympath srv*c:\symbols*http://msdl.microsoft.com/downloads/symbols Symbol search path is: srv*c:\symbols*http://msdl.microsoft.com/downloads/symbols Expanded Symbol search path is: srv*c:\symbols*http://msdl.microsoft.com/downloads/symbols 1: kd> .reload;!analyze -v;r;kv;lmnt;.logclose;q Loading Kernel Symbols ............................................................... ................................................................ ......................... Loading User Symbols Loading unloaded module list ........ ******************************************************************************* * * * Bugcheck Analysis * * * ******************************************************************************* UNEXPECTED_KERNEL_MODE_TRAP (7f) This means a trap occurred in kernel mode, and it's a trap of a kind that the kernel isn't allowed to have/catch (bound trap) or that is always instant death (double fault). The first number in the bugcheck params is the number of the trap (8 = double fault, etc) Consult an Intel x86 family manual to learn more about what these traps are. Here is a *portion* of those codes: If kv shows a taskGate use .tss on the part before the colon, then kv. Else if kv shows a trapframe use .trap on that value Else .trap on the appropriate frame will show where the trap was taken (on x86, this will be the ebp that goes with the procedure KiTrap) Endif kb will then show the corrected stack. Arguments: Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULT Arg2: 0000000080050033 Arg3: 00000000000006f8 Arg4: fffff80001ee1678 Debugging Details: ------------------ BUGCHECK_STR: 0x7f_8 CUSTOMER_CRASH_COUNT: 4 DEFAULT_BUCKET_ID: COMMON_SYSTEM_FAULT PROCESS_NAME: SomeApplication.e CURRENT_IRQL: 1 EXCEPTION_RECORD: fffffa60087b43c8 -- (.exr 0xfffffa60087b43c8) .exr 0xfffffa60087b43c8 ExceptionAddress: fffff80001ed0150 (nt!RtlVirtualUnwind+0x0000000000000250) ExceptionCode: 10000004 ExceptionFlags: 00000000 NumberParameters: 2 Parameter[0]: 0000000000000000 Parameter[1]: 00000000000000d8 TRAP_FRAME: fffffa60087b4470 -- (.trap 0xfffffa60087b4470) .trap 0xfffffa60087b4470 NOTE: The trap frame does not contain all registers. Some register values may be zeroed or incorrect. rax=0000000000000050 rbx=0000000000000000 rcx=0000000000000004 rdx=00000000000000d8 rsi=0000000000000000 rdi=0000000000000000 rip=fffff80001ed0150 rsp=fffffa60087b4600 rbp=fffffa60087b4840 r8=0000000000000006 r9=fffff80001e4e000 r10=ffffffffffffff88 r11=fffff8000204c000 r12=0000000000000000 r13=0000000000000000 r14=0000000000000000 r15=0000000000000000 iopl=0 nv up ei pl zr na po nc nt!RtlVirtualUnwind+0x250: fffff800`01ed0150 488b02 mov rax,qword ptr [rdx] ds:00000000`000000d8=???????????????? .trap Resetting default scope LAST_CONTROL_TRANSFER: from fffff80001ea81ee to fffff80001ea8450 STACK_TEXT: fffffa60`005f1a68 fffff800`01ea81ee : 00000000`0000007f 00000000`00000008 00000000`80050033 00000000`000006f8 : nt!KeBugCheckEx fffffa60`005f1a70 fffff800`01ea6a38 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x6e fffffa60`005f1bb0 fffff800`01ee1678 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDoubleFaultAbort+0xb8 fffffa60`087b3c90 fffff800`01ea82a9 : fffffa60`087b43c8 00000000`00000001 fffffa60`087b4470 00000000`0000023b : nt!KiDispatchException+0x34 fffffa60`087b4290 fffff800`01ea70a5 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000001 : nt!KiExceptionDispatch+0xa9 fffffa60`087b4470 fffff800`01ed0150 : fffffa60`087b5498 fffffa60`087b4e70 fffff800`01f95190 fffff800`01e4e000 : nt!KiPageFault+0x1e5 fffffa60`087b4600 fffff800`01ed3f78 : fffffa60`00000001 00000000`00000000 00000000`00000000 ffffffff`ffffff88 : nt!RtlVirtualUnwind+0x250 fffffa60`087b4670 fffff800`01ee1706 : fffffa60`087b5498 fffffa60`087b4e70 fffffa60`00000000 00000000`00000000 : nt!RtlDispatchException+0x118 fffffa60`087b4d60 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDispatchException+0xc2 STACK_COMMAND: kb FOLLOWUP_IP: nt!KiDoubleFaultAbort+b8 fffff800`01ea6a38 90 nop SYMBOL_STACK_INDEX: 2 SYMBOL_NAME: nt!KiDoubleFaultAbort+b8 FOLLOWUP_NAME: MachineOwner MODULE_NAME: nt IMAGE_NAME: ntkrnlmp.exe DEBUG_FLR_IMAGE_TIMESTAMP: 49e0237f FAILURE_BUCKET_ID: X64_0x7f_8_nt!KiDoubleFaultAbort+b8 BUCKET_ID: X64_0x7f_8_nt!KiDoubleFaultAbort+b8 Followup: MachineOwner --------- rax=fffffa60005f1b70 rbx=fffffa60087b43c8 rcx=000000000000007f rdx=0000000000000008 rsi=fffffa60087b4470 rdi=fffff80001f9bfa4 rip=fffff80001ea8450 rsp=fffffa60005f1a68 rbp=fffffa60005f1c30 r8=0000000080050033 r9=00000000000006f8 r10=fffff80001ee1678 r11=fffffa60087b4468 r12=0000000000000000 r13=fffffa60087b4290 r14=fffff8000205149c r15=fffff80001e4e000 iopl=0 nv up ei ng nz na pe nc cs=0010 ss=0018 ds=002b es=002b fs=0053 gs=002b efl=00000282 nt!KeBugCheckEx: fffff800`01ea8450 48894c2408 mov qword ptr [rsp+8],rcx ss:0018:fffffa60`005f1a70=000000000000007f Child-SP RetAddr : Args to Child : Call Site fffffa60`005f1a68 fffff800`01ea81ee : 00000000`0000007f 00000000`00000008 00000000`80050033 00000000`000006f8 : nt!KeBugCheckEx fffffa60`005f1a70 fffff800`01ea6a38 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x6e fffffa60`005f1bb0 fffff800`01ee1678 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDoubleFaultAbort+0xb8 (TrapFrame @ fffffa60`005f1bb0) fffffa60`087b3c90 fffff800`01ea82a9 : fffffa60`087b43c8 00000000`00000001 fffffa60`087b4470 00000000`0000023b : nt!KiDispatchException+0x34 fffffa60`087b4290 fffff800`01ea70a5 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000001 : nt!KiExceptionDispatch+0xa9 fffffa60`087b4470 fffff800`01ed0150 : fffffa60`087b5498 fffffa60`087b4e70 fffff800`01f95190 fffff800`01e4e000 : nt!KiPageFault+0x1e5 (TrapFrame @ fffffa60`087b4470) fffffa60`087b4600 fffff800`01ed3f78 : fffffa60`00000001 00000000`00000000 00000000`00000000 ffffffff`ffffff88 : nt!RtlVirtualUnwind+0x250 fffffa60`087b4670 fffff800`01ee1706 : fffffa60`087b5498 fffffa60`087b4e70 fffffa60`00000000 00000000`00000000 : nt!RtlDispatchException+0x118 fffffa60`087b4d60 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDispatchException+0xc2 </pre> http://stackoverflow.com/questions/1072510/delphi-tclientsocket-replacement-using-winsock2-and-iocp 1 Delphi TClientSocket replacement using winsock2 and IOCP? Bruce 2009-07-02T04:35:44Z 2009-07-02T16:47:16Z <p>Is there such a thing? It needs to be asynchronous (no Indy).</p> http://stackoverflow.com/questions/846965/delphi-array-alignment-set-to-4-8-or-16-byte-boundaries 1 Delphi Array Alignment set to 4, 8, or 16 byte boundaries? Bruce 2009-05-11T06:39:57Z 2009-05-17T13:09:37Z <p>I would like to use the FFTW C library from Delphi 2009 and according to this documentation;</p> <p><a href="http://www.fftw.org/install/fftw_usage_from_delphi.txt" rel="nofollow">http://www.fftw.org/install/fftw_usage_from_delphi.txt</a></p> <p>to increase the performance inside the FFTW library (such that it can use SIMD extensions) arrays passed in of either Single (float) or Double (double) need to be aligned either at 4 or 8 byte boundaries. I found documentation talking about alignment of record structures, but nothing specific about arrays. Is there a way to do this in Delphi 2009.</p> <p>So the code (copied from the above documentation) would look like this;</p> <pre><code>var in, out : Array of Single; // Array aligned at 4 byte boundary plan : Pointer; {$APPTYPE CONSOLE} begin ... SetLength(in, N); SetLength(out, N); plan := _fftwf_plan_dft_1d(dataLength, @in[0], @out[0], FFTW_FORWARD, FFTW_ESTIMATE); </code></pre> <p>Also in the above documentation they talk about 8 and 16 byte boundaries but it looks to me it should be 4 and 8 byte boundaries, if any could clear that up to that would be great.</p> <p>Thanks, Bruce</p> http://stackoverflow.com/questions/377724/284-could-not-be-located-in-the-dynamic-link-library-ssleay32-dll/648831#648831 1 Answer by Bruce for 284 could not be located in the dynamic link library SSLEAY32.dll Bruce 2009-03-15T23:50:39Z 2009-03-15T23:50:39Z <p>Any even better solution, in so far as using the latest binaries for OpenSSL, is to rename both libeay32.dll and ssleay32.dll in both the ruby\bin folder and also the posgresql\lib folder and install the latest OpenSSL from <a href="http://www.slproweb.com/products/Win32OpenSSL.html" rel="nofollow">http://www.slproweb.com/products/Win32OpenSSL.html</a>, at the time of writing it was "Win32 OpenSSL v0.9.8j Light" put the dir in the path and away you go, it worked for me! You get the warm feeling of using the most up to date and secure OpenSSL libraries.</p> http://stackoverflow.com/questions/544204/delphi-2009-indy-10-tidtcpserver-onexecute-how-to-grab-all-the-bytes-in-the-in 1 Delphi 2009, Indy 10, TIdTCPServer.OnExecute, how to grab all the bytes in the InputBuffer Bruce 2009-02-13T00:26:46Z 2009-02-13T02:07:31Z <p>Hi</p> <p>I am messing around with the Indy 10 supplied with Delphi 2009 and am having trouble with getting all the data from the IOHandler when OnExecute fires...</p> <pre><code>procedure TFormMain.IdTCPServerExecute(AContext: TIdContext); var RxBufStr: UTF8String; RxBufSize: Integer; begin if AContext.Connection.IOHandler.Readable then begin RxBufSize := AContext.Connection.IOHandler.InputBuffer.Size; if RxBufSize &gt; 0 then begin SetLength(RxBufStr, RxBufSize); AContext.Connection.IOHandler.ReadBytes(TBytes(RxBufStr), RxBufSize, False); end; end; end; </code></pre> <p>AContext.Connection.IOHandler.InputBuffer.Size doesn't seem reliable and often returns 0, but on the next run throug the OnExecute it'll pick up the right number of bytes, but that is too late.</p> <p>Essentially I want to be able to just grab all the data, stuff it into a UTF8String (<em>not</em> a Unicode string) and then parse for a special marker. So I have no headers and messages are variable length. It seems the Indy 10 IOHandlers are not setup for this or I am just using it wrong.</p> <p>It would be nice to do something like pass a buffer of a certain size, fill it as much as possible and return the number of bytes actually filled and then keep going if there are more.</p> <p>As an aside what's the status of TIdSchedulerOfFiber, this looks very interesting, does it work? Is anyone using it? I notice that it isn't in the standard install of Delphi 2009 though.</p> <p><strong>Update:</strong> I found Msg := AContext.Connection.IOHandler.ReadLn(#0, enUTF8); which works but I still would like to know the answer to the above question, is it because it is based on blocking IO? Which makes even more keen on this TIdSchedulerOfFiber.</p> http://stackoverflow.com/questions/352543/delphi-win-api-createtimerqueuetimer-threads-and-thread-safe-formatdatetime-crash 2 Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes Bruce 2008-12-09T12:05:21Z 2009-01-13T00:38:22Z <p>Hi</p> <p>This is a bit of a long question, but here we go. There is a version of FormatDateTime that is said to be thread safe in that you use </p> <pre><code>GetLocaleFormatSettings(3081, FormatSettings); </code></pre> <p>to get a value and then you can use it like so; </p> <pre><code>FormatDateTime('yyyy', 0, FormatSettings); </code></pre> <p>Now imagine two timers, one using TTimer (interval say 1000ms) and then another timer created like so (10ms interval); </p> <pre><code>CreateTimerQueueTimer ( FQueueTimer, 0, TimerCallback, nil, 10, 10, WT_EXECUTEINTIMERTHREAD ); </code></pre> <p>Now the narly bit, if in the call back and also the timer event you have the following code;</p> <pre><code>for i := 1 to 10000 do begin FormatDateTime('yyyy', 0, FormatSettings); end; </code></pre> <p>Note there is no assignment. This produces access violations almost immediatley, sometimes 20 minutes later, whatever, at random places. Now if you write that code in C++Builder it never crashes. The header conversion we are using is the JEDI JwaXXXX ones. Even if we put locks in the Delphi version around the code, it only delays the inevitable. We've looked at the original C header files and it all looks good, is there some different way that C++ uses the Delphi runtime? The thread safe version of FormatDatTime looks to be re-entrant. Any ideas or thoughts from anyone who may have seen this before.</p> <p><strong>UPDATE:</strong></p> <p>To narrow this down a bit, FormatSettings is passed in as a const, so does it matter if they use the same copy (as it turns out passing a local version within the function call yeilds the same problem)? Also the version of FormatDateTime that takes the FormatSettings doesn't call GetThreadLocale, because it already has the Locale information in the FormatSettings structure (I double checked by stepping through the code). </p> <p>I made mention of no assignment to make it clear that no shared storage is being accessed, so no locking is required.</p> <p>WT_EXECUTEINTIMERTHREAD is used to simplify the problem. I was under the impression you should only use it for very short tasks because it may mean it'll miss the next interval if it is running something long?</p> <p>If you use a plain old TThread the problem doesn't occur. What I am getting at here I suppose is that using a TThread or a TTimer works but using a thread created outside the VCL doesn't, that's why I asked if there was a difference in the way C++ Builder uses the VCL/Delphi RTL.</p> <p>As an aside this code as mentioned before also fails (but takes longer), after a while, CS := TCriticalSection.Create;</p> <pre><code> CS.Acquire; for i := 1 to LoopCount do begin FormatDateTime('yyyy', 0, FormatSettings); end; CS.Release; </code></pre> <p>And now for the bit I really don't understand, I wrote this as suggested;</p> <pre><code>function ReturnAString: string; begin Result := 'Test'; UniqueString(Result); end; </code></pre> <p>and then inside each type of timer the code is;</p> <pre><code> for i := 1 to 10000 do begin ReturnAString; end; </code></pre> <p>This causes the same kinds of failiures, as I said before the fault is never in the same place inside the CPU window etc. Sometimes it's an access violation and sometimes it might be an invalid pointer operation. I am using Delphi 2009 btw.</p> <p><strong>UPDATE 2:</strong></p> <p>Roddy (below) points out the Ontimer event (and unfortunately also Winsock, i.e. TClientSocket) use the windows message pump (as an aside it would be nice to have some nice Winsock2 components using IOCP and Overlapping IO), hence the push to get away from it. However does anyone know how to see what sort of thread local storage is setup on the CreateQueueTimerQueue?</p> <p>Thanks for taking the time to think and answer this problem.</p> http://stackoverflow.com/questions/352543/delphi-win-api-createtimerqueuetimer-threads-and-thread-safe-formatdatetime-crash/355603#355603 0 Answer by Bruce for Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes Bruce 2008-12-10T10:17:17Z 2008-12-10T10:17:17Z <p>The problem with Indy is that if you need many connections it's not effiecient at all. It requires one thread per connection (blocking I/O) which doesn't scale at all, hence the benefit of IOCP and Overlapping IO, it's pretty much the only scalable way on Windows.</p> http://stackoverflow.com/questions/352543/delphi-win-api-createtimerqueuetimer-threads-and-thread-safe-formatdatetime-crash/354847#354847 2 Answer by Bruce for Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashes Bruce 2008-12-10T01:34:34Z 2008-12-10T01:34:34Z <p>I am not sure if it is good form to post an "Answer" to my own question but it seemed logical, let me know if that is uncool. </p> <p>I think I have found the problem, the thread local storage idea lead me to follow a bunch of leads and I found this magical line;</p> <p>IsMultiThread := True;</p> <p>From the help;</p> <p>"IsMultiThread is set to true to indicate that the memory manager should support multiple threads. IsMultiThread is set to true by BeginThread and class factories."</p> <p>This of course is <strong>not</strong> set by using a single Main VCL thread using a TTimer, However it is set for you when you use TThread. If I set it manually the problem goes away. </p> <p>In C++Builder, I do not use a TThread but it appears by using the following code;</p> <pre><code>if (IsMultiThread) { ShowMessage("IsMultiThread is True!"); } </code></pre> <p>that is it set for you somewhere automatically.</p> <p>I am really glad for peoples input so that I could find this and I hope vainly it might help someone else.</p> http://stackoverflow.com/questions/1793876/encryptmessage-returns-seceinvalidtoken Comment by Bruce on EncryptMessage returns SEC_E_INVALID_TOKEN Bruce 2009-11-25T06:16:38Z 2009-11-25T06:16:38Z ^ Not this problem :-) http://stackoverflow.com/questions/1793876/encryptmessage-returns-seceinvalidtoken Comment by Bruce on EncryptMessage returns SEC_E_INVALID_TOKEN Bruce 2009-11-25T01:24:37Z 2009-11-25T01:24:37Z I've added a comment to the question you refer to (<a href="http://stackoverflow.com/questions/1727259" rel="nofollow">stackoverflow.com/questions/1727259</a>) about the &quot;solution&quot; by the way. http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-25T01:21:26Z 2009-11-25T01:21:26Z For other reasons I switched from using a Vista machine to an XP machine and then a Windows 7 machine on both XP and Windows 7, the code worked flawlessly. http://stackoverflow.com/questions/1793876/encryptmessage-returns-seceinvalidtoken Comment by Bruce on EncryptMessage returns SEC_E_INVALID_TOKEN Bruce 2009-11-25T01:17:11Z 2009-11-25T01:17:11Z Yes, making progress :). Thanks again for your help before. In this case cbHeader is 5, InDataLength is 23 (It says it would complain if it is too small) but cbTrailer is 36 not 16, I hard coded it to 16 but still no joy. http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-17T06:33:02Z 2009-11-17T06:33:02Z Although it still doesn't say what SSPI provider is. http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-17T06:30:51Z 2009-11-17T06:30:51Z I hadn't followed the instructions quite well enough, I should have set it to 0x0007 instead which reveals that my private key information is not attached, thanks very much for you help, it is very much appreciated. http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-17T06:24:38Z 2009-11-17T06:24:38Z Yes I did, that's where the information I had in my previous comment came from. Maybe not enough information is provided in Vista; System - Provider [ Name] Schannel - EventID 36867 [ Qualifiers] 16384 Level 4 Task 0 Keywords 0x80000000000000 - TimeCreated [ SystemTime] 2009-11-17T05:57:30.000Z EventRecordID 40292 Channel System Computer x24 Security Thats' all I see having set the logging to 0x0004. http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-17T05:59:16Z 2009-11-17T05:59:16Z Event viewer says the provider is Schannel and the Channel is System with the General windows saying &quot;Creating an SSL server credential.&quot; and then I still get the 'No credentials are available in the security package.' error. Unfortunately the stackoverflow link in your answer doesn't link to anywhere for me, does it work for you? http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-17T05:28:49Z 2009-11-17T05:28:49Z I can get the certificate using CertFindCertificateInStore and it is returning the correct certificate but when I pass the CertContext and CertStore to AcquireCredentialsHandle I get the 'No credentials are available in the security package.' error which led me to believe that I have the wrong kind of private/public certificate (wrong hash or something else), but I can't find what it should be. I had been using the .bat files from this project; <a href="http://beta.codeproject.com/KB/IP/AsyncSocketServerandClien.aspx" rel="nofollow">beta.codeproject.com/KB/IP/&hellip;</a> but no luck. http://stackoverflow.com/questions/1727259/acquirecredentialshandle-returns-secenocredentials/1727335#1727335 Comment by Bruce on AcquireCredentialsHandle returns SEC_E_NO_CREDENTIALS Bruce 2009-11-17T05:08:40Z 2009-11-17T05:08:40Z Do you have a link to generating a valid SSL/TLS certificate using OpenSSL on WIndows Vista, are there restrictions on the level of encryption you can use with Schannel? This looks like my problem, but also I am using the UNISP_NAME = 'Microsoft Unified Security Protocol Provider', which seems the only one that works. Thanks for any more hints as I am having trouble finding definitive info on this subject. http://stackoverflow.com/questions/544204/delphi-2009-indy-10-tidtcpserver-onexecute-how-to-grab-all-the-bytes-in-the-in/544473#544473 Comment by Bruce on Delphi 2009, Indy 10, TIdTCPServer.OnExecute, how to grab all the bytes in the InputBuffer Bruce 2009-10-01T06:12:05Z 2009-10-01T06:12:05Z I have found that using similar code to above that the AContext.Connection.IOHandler.CheckForDataOnSource(10) returns false when I can see in the debugger that the InputBuffer as data, is this a bug or is there some other setting I should use? http://stackoverflow.com/questions/1225527/vista-64-bit-bsod-when-running-a-delphi-2009-application/1225560#1225560 Comment by Bruce on Vista 64 bit BSOD when running a Delphi 2009 Application. Bruce 2009-08-04T23:22:59Z 2009-08-04T23:22:59Z Thanks for this, I was under the impression also that a user mode application couldn't cause a BSOD but wasn't quite sure, it seemed too much of a coincidence that it only happened exactly with Delphi 2009 at the same point in the app after multiple reboots, but the memory must have been just in the right place. I thought Vista 64 bit had address randomization. Anyway it turns out the memory on that machine is failing (tested with MS &quot;Windows Memory Diagnostic&quot; and MemTest86+. Thanks again. http://stackoverflow.com/questions/1072510/delphi-tclientsocket-replacement-using-winsock2-and-iocp/1073151#1073151 Comment by Bruce on Delphi TClientSocket replacement using winsock2 and IOCP? Bruce 2009-07-07T06:57:40Z 2009-07-07T06:57:40Z And I just realised the distribution .zip is missing files as well. http://stackoverflow.com/questions/1072510/delphi-tclientsocket-replacement-using-winsock2-and-iocp/1073151#1073151 Comment by Bruce on Delphi TClientSocket replacement using winsock2 and IOCP? Bruce 2009-07-07T06:41:20Z 2009-07-07T06:41:20Z This also isn't suitabled for Delphi 2009. http://stackoverflow.com/questions/1072510/delphi-tclientsocket-replacement-using-winsock2-and-iocp/1075475#1075475 Comment by Bruce on Delphi TClientSocket replacement using winsock2 and IOCP? Bruce 2009-07-07T02:13:48Z 2009-07-07T02:13:48Z Neither appear to be IOCP. Do you have links to information that confirms they are both IOCP and Winsock2?