Discuss this help topic in SecureBlackbox Forum
Defines possible types of PDF signatures
Declaration
[C#/Java]
TSBPDFSignatureType = short;
const int stDocument = 1;
const int stMDP = 2;
const int stUsageRights = 3;
const int stObject = 4;
const int stUnknown = 255;
[VB.NET]
TSBPDFSignatureType As SmallInt
Const stDocument As Integer = 1
Const stMDP As Integer = 2
Const stUsageRights As Integer = 3
Const stObject As Integer = 4
Const stUnknown As Integer = 255
[Pascal]
TSBPDFSignatureType = (stDocument, stMDP, stUsageRights, stObject, stUnknown);
[C++]
typedef uint8_t TSBPDFSignatureTypeRaw;
typedef enum { stDocument = 0, stMDP = 1, stUsageRights = 2, stObject = 3, stUnknown = 4 } TSBPDFSignatureType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum