Discuss this help topic in SecureBlackbox Forum
This property specifies the value of Private Key
of RSA scheme
Declaration
[C#]
byte[] RSAPrivateExponent;
[VB.NET]
Property RSAPrivateExponent As Byte()
[Pascal]
property RSAPrivateExponent : string;
[C++]
void get_RSAPrivateExponent(std::vector<uint8_t> &OutResult);
void set_RSAPrivateExponent(const std::vector<uint8_t> &Value);
[PHP]
string get_RSAPrivateExponent()
void set_RSAPrivateExponent(array of byte|string|NULL $Value)
[Java]
byte[] getRSAPrivateExponent();
void setRSAPrivateExponent(byte[] Value);
Description
This property specifies
the Private Key («D») parameter of the
RSA encryption/signing scheme.
The string should contain the binary data of RSA Private Key.
Discuss this help topic in SecureBlackbox Forum