ref: e5894dcceaedeaf7d4f5537dd306170b1b6d4814
dir: /sys/src/libsec/port/rsaencrypt.c/
#include "os.h"
#include <mp.h>
#include <libsec.h>
mpint*
rsaencrypt(RSApub *rsa, mpint *in, mpint *out)
{
if(out == nil)
out = mpnew(0);
mpexp(in, rsa->ek, rsa->n, out);
return out;
}