Discuss this help topic in SecureBlackbox Forum
Defines possible methods for checksum calculation.
Declaration
[C#/Java]
TSBFTPCheckMethod = short;
const short cmCRC = 0;
const short cmMD5 = 1;
const short cmSHA1 = 2;
[VB.NET]
TSBFTPCheckMethod As SmallInt
Const cmCRC As SmallInt = 0
Const cmMD5 As SmallInt = 1
Const cmSHA1 As SmallInt = 2
[Pascal]
TSBFTPCheckMethod = (cmCRC, cmMD5, cmSHA1);
[C++]
typedef uint8_t TSBFTPCheckMethodRaw;
typedef enum { cmCRC = 0, cmMD5 = 1, cmSHA1 = 2 } TSBFTPCheckMethod;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSimpleFTPS
- Assembly: SecureBlackbox.FTPS
VCL:Java:
- Package: SecureBlackbox.FTPS.jar
C++:
Discuss this help topic in SecureBlackbox Forum