aboutsummaryrefslogtreecommitdiff
path: root/src/libsec/port/rsaencrypt.c
blob: ade686dce055be5a04c49a50cbaf3bb4d4e5441b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}