WinBatch® Technical Support Forum

Archived Boards => COM Automation and dotNet => Topic started by: Mogens Christensen on June 07, 2013, 07:53:25 AM

Title: SFTP and certificate thumbprints in SAFEARRAY structures
Post by: Mogens Christensen on June 07, 2013, 07:53:25 AM
We have been automating SFTP transfers using WinBatch over SmartFtp for a long time, but suddenly the SFTP session setup requires us to supply the certificate thumbprint also.

SmartFTP gave us a link to the required data structure (Windows safearray, see http://msdn.microsoft.com/en-us/library/windows/desktop/ms221482(v=vs.85).aspx for details).

We have the thumbprint in question; it is a 20 byte long binary sequence. How do we put it into the memory structure below using WinBatch?

typedef struct tagSAFEARRAY {
USHORT cDims;
USHORT fFeatures;
ULONG cbElements;
ULONG cLocks;
PVOID pvData;
SAFEARRAYBOUND rgsabound[1];
} SAFEARRAY, *LPSAFEARRAY;
Title: Re: SFTP and certificate thumbprints in SAFEARRAY structures
Post by: td on June 07, 2013, 09:45:03 AM
How are you accessing SmartFTP functionality?