Discuss this help topic in SecureBlackbox Forum

TSBRenegotiationAttackPreventionMode

Declared in     


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


Defines possible renegotiation attack prevention modes.

Declaration

[C#]
    public enum TSBRenegotiationAttackPreventionMode { rapmCompatible = 0, rapmStrict = 1, rapmAuto = 2 };

[VB.NET]
    Enum TSBRenegotiationAttackPreventionMode
        rapmCompatible = 0
        rapmStrict = 1
        rapmAuto = 2
    End Enum

[Pascal]
    TSBRenegotiationAttackPreventionMode = (rapmCompatible, rapmStrict, rapmAuto);

[C++]
    typedef uint8_t TSBRenegotiationAttackPreventionModeRaw;
    typedef enum { rapmCompatible = 0, rapmStrict = 1, rapmAuto = 2 } TSBRenegotiationAttackPreventionMode;

[PHP]
    class TSBRenegotiationAttackPreventionMode extends TSBBaseEnum {
        const rapmCompatible = 0;
        const rapmStrict = 1;
        const rapmAuto = 2;
    }

[Java]
    public enum TSBRenegotiationAttackPreventionMode { rapmCompatible, rapmStrict, rapmAuto }

Possible values

Declared in

.NET:
  • Namespace: SBSSLCommon
  • Assembly: SecureBlackbox.SSLCommon
VCL:
  • Unit: SBSSLCommon
Java:
  • Package: SecureBlackbox.SSLCommon.jar
C++:
  • sbsslcommon.h

Discuss this help topic in SecureBlackbox Forum