Method Crypto.RSA()->rsa_pad()
- Method rsa_pad
 Gmp.mpzrsa_pad(stringmessage,int(1..2)type,function(int:string)|voidrandom)- Description
 Pads the
messageto the current block size with methodtypeand returns the result as an integer. This is equivalent to OS2IP(EME-PKCS1-V1_5-ENCODE(message)) in PKCS-1.- Parameter 
type 1The message is padded with
0xffbytes.2The message is padded with random data, using the
randomfunction if provided. Otherwise Crypto.Random.random_string will be used.