ref: 7734749e8a7391f4e69281fc35e48df22c9a08a4
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; }