Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.UsePSS

TElCMSSignature     See also     


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


Specifies, whether RSASSA-PSS algorithm is used.

Declaration

[C#]
    bool UsePSS;

[VB.NET]
    Property UsePSS As Boolean

[Pascal]
    property UsePSS : boolean;

[C++]
    bool get_UsePSS();
    void set_UsePSS(bool Value);

[PHP]
    bool get_UsePSS()
    void set_UsePSS(bool $Value)

[Java]
    boolean getUsePSS();
    void setUsePSS(boolean Value);

Description

    If this property value is True, RSASSA-PSS algorithm is used for signing. Though RSASSA-PSS algorithm provides better security than classic RSA scheme (PKCS#1-1.5), please take into account, that RSASSA-PSS is a relatively new algorithm and it may not be understood by older implementations.

See also:     SignatureAlgorithm    

Discuss this help topic in SecureBlackbox Forum