Discuss this help topic in SecureBlackbox Forum

TElMessageEncryptor.UseOAEP

TElMessageEncryptor     


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


Specifies if RSA-OAEP algorithm is used.

Declaration

[C#]
    bool UseOAEP;

[VB.NET]
    Property UseOAEP As Boolean

[Pascal]
    property UseOAEP: Boolean;

[C++]
    bool get_UseOAEP();
    void set_UseOAEP(bool Value);

[PHP]
    bool get_UseOAEP()
    void set_UseOAEP(bool $Value)

[Java]
    boolean getUseOAEP();
    void setUseOAEP(boolean Value);

Description

    If this property value is true, then RSA-OAEP algorithm is used when encrypting a message. Though RSA-OAEP algorithm provides better security than classic RSA scheme (PKCS#1-1.5), please take into account, that RSA-OAEP is a relatively new algorithm and it may not be understood by older implementations.

Discuss this help topic in SecureBlackbox Forum