ref: 265d7d9453fa49f42c9fb33ebeefc8657c9df2c0
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; }