ref: 64ed7785525654984f16cc4aadd25bd5e3a3331e
dir: /3rd/mp/mptobe.c/
#include "platform.h"
#include "mp.h"
// convert an mpint into a big endian byte array (most significant byte first; left adjusted)
// return number of bytes converted
// if p == nil, allocate and result array
int
mptobe(mpint *b, u8int *p, u32int n, u8int **pp)
{
u32int m;
m = (mpsignif(b)+7)/8;
if(m == 0)
m++;
if(p == nil){
n = m;
p = MEM_ALLOC(n);
if(p == nil){
fprintf(stderr, "mptobe: no memory\n");
exit(2);
}
} else {
if(n < m)
return -1;
if(n > m)
memset(p+m, 0, n-m);
}
if(pp != nil)
*pp = p;
mptober(b, p, m);
return m;
}