Discuss this help topic in SecureBlackbox Forum

TElPGPWriter.UseNewFeatures

TElPGPWriter     See also     


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;

[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);

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. In this case ClearTextSign and Sign will be compatible with PGP 2.6.x, while Encrypt and EncryptAndSign will not.
    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).
    Default value is True.

See also:     SigningKeys    

Discuss this help topic in SecureBlackbox Forum