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