Discuss this help topic in SecureBlackbox Forum

TElSMimeErrors

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    TElSMimeErrors = int;
        const int smeUnknown = 1;
        const int smeSignaturePartNotFound = 2;
        const int smeBodyPartNotFound = 4;
        const int smeInvalidSignature = 8;
        const int smeSigningCertificateMismatch = 16;
        const int smeEncryptingCertificateMismatch = 32;
        const int smeNoData = 64;
        const int smeInvalidMessageDigest = 128;
        const int smeOmittedMessageDigest = 256;

[VB.NET]
    TElSMimeErrors As Integer
        Const smeUnknown As Integer = 1
        Const smeSignaturePartNotFound As Integer = 2
        Const smeBodyPartNotFound As Integer = 4
        Const smeInvalidSignature As Integer = 8
        Const smeSigningCertificateMismatch As Integer = 16
        Const smeEncryptingCertificateMismatch As Integer = 32
        Const smeNoData As Integer = 64
        Const smeInvalidMessageDigest As Integer = 128
        Const smeOmittedMessageDigest As Integer = 256

[Pascal]
    under development

[C++]
    typedef uint8_t TElSMimeErrorRaw;
    typedef enum { smeUnknown = 0, smeSignaturePartNotFound = 1, smeBodyPartNotFound = 2, smeInvalidSignature = 3, smeSigningCertificateMismatch = 4, smeEncryptingCertificateMismatch = 5, smeNoData = 6, smeInvalidMessageDigest = 7, smeOmittedMessageDigest = 8 } TElSMimeError;
    
    typedef uint32_t TElSMimeErrorsRaw;
    typedef enum { f_smeUnknown = 1, f_smeSignaturePartNotFound = 2, f_smeBodyPartNotFound = 4, f_smeInvalidSignature = 8, f_smeSigningCertificateMismatch = 16, f_smeEncryptingCertificateMismatch = 32, f_smeNoData = 64, f_smeInvalidMessageDigest = 128, f_smeOmittedMessageDigest = 256 } TElSMimeErrors;

[PHP]
    class TElSMimeErrors extends TSBBaseEnum {
        const smeUnknown = 1;
        const smeSignaturePartNotFound = 2;
        const smeBodyPartNotFound = 4;
        const smeInvalidSignature = 8;
        const smeSigningCertificateMismatch = 16;
        const smeEncryptingCertificateMismatch = 32;
        const smeNoData = 64;
        const smeInvalidMessageDigest = 128;
        const smeOmittedMessageDigest = 256;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSMIMECore
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBSMIMECore
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbsmimecore.h

See also:     TElSMimeError    

Discuss this help topic in SecureBlackbox Forum