Perform the encryption of a message in respect with the RSA scheme.
[R] = NL_S_RSAEncryption(N,E,M)
Modulus.
Private exponent.
Message.
Encrypted message.
NL_S_RSAEncryption performs the encryption R of the message M in respect with the RSA scheme (WIKIPEDIA). N and E form the private key. The message M must be smaller than N (integer).