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;