Discuss this help topic in SecureBlackbox Forum

TElSimplePGPMIMEOptions.UseNewFeatures

TElSimplePGPMIMEOptions     


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


Specifies if new algorithms or only algorithms compatible with PGP 2.6.x are used.

Declaration

[C#]
    bool UseNewFeatures;

[VB.NET]
    Property UseNewFeatures As Boolean

[Pascal]
    property UseNewFeatures : boolean = true;

[C++]
    bool get_UseNewFeatures();
    void set_UseNewFeatures(bool Value);

[PHP]
    bool get_UseNewFeatures()
    void set_UseNewFeatures(bool $Value)

[Java]
    boolean getUseNewFeatures();
    void setUseNewFeatures(boolean Value);

Values

Description

    Use this property for compatibility with old versions of PGP-compatible software.
    If this property is set to True, then newer and stronger algorithms will be used.
    If the property is set to False, then the result will be compatible with PGP 2.6.x, while the keys are compatible (i.e. don't use features not supported by PGP 2.6.x).
    See TElPGPWriter.UseNewFeatures for more details.
    Default value is True.

Discuss this help topic in SecureBlackbox Forum