Discuss this help topic in SecureBlackbox Forum

TElSSHKey.RSAPublicExponent

TElSSHKey     See also     


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


This property specifies the value of Public Key of RSA scheme

Declaration

[C#]
    byte[] RSAPublicExponent;

[VB.NET]
    Property RSAPublicExponent As Byte()

[Pascal]
    property RSAPublicExponent : string;

[C++]
    void get_RSAPublicExponent(std::vector<uint8_t> &OutResult);
    void set_RSAPublicExponent(const std::vector<uint8_t> &Value);

[PHP]
    string get_RSAPublicExponent()
    void set_RSAPublicExponent(array of byte|string|NULL $Value)

[Java]
    byte[] getRSAPublicExponent();
    void setRSAPublicExponent(byte[] Value);

Description

    This property specifies the Public Key («E») parameter of the RSA encryption/signing scheme. The string should contain the binary data of RSA Public Key.

See also:     RSAPrivateExponent     RSAPublicModulus    

Discuss this help topic in SecureBlackbox Forum