summaryrefslogtreecommitdiff
path: root/sys/src/libmp/port/mptolel.c
blob: 4ee41971f4541a6b70f6f18691bb98877346f60a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "os.h"
#include <mp.h>
#include "dat.h"

void
mptolel(mpint *b, uchar *p, int n)
{
	int i, j, m;
	mpdigit x;

	memset(p, 0, n);

	m = b->top*Dbytes;
	if(m < n)
		n = m;

	i = 0;
	while(n >= Dbytes){
		n -= Dbytes;
		x = b->p[i++];
		for(j = 0; j < Dbytes; j++){
			*p++ = x;
			x >>= 8;
		}
	}
	if(n > 0){
		x = b->p[i];
		for(j = 0; j < n; j++){
			*p++ = x;
			x >>= 8;
		}
	}
}