Discuss this help topic in SecureBlackbox Forum
This property specifies the value of Public Modulus
of RSA scheme
Declaration
[C#]
byte[] RSAPublicModulus;
[VB.NET]
Property RSAPublicModulus As Byte()
[Pascal]
property RSAPublicModulus : string;
[C++]
void get_RSAPublicModulus(std::vector<uint8_t> &OutResult);
void set_RSAPublicModulus(const std::vector<uint8_t> &Value);
[PHP]
string get_RSAPublicModulus()
void set_RSAPublicModulus(array of byte|string|NULL $Value)
[Java]
byte[] getRSAPublicModulus();
void setRSAPublicModulus(byte[] Value);
Description
This property specifies
the Public Modulus («M») parameter of the
RSA encryption/signing scheme.
The string should contain the binary data of RSA Modulus.
Discuss this help topic in SecureBlackbox Forum