ref: 142bb6d5cfa25b4f8d495ea82e09a1b94efb9f0f
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; }