19 řádky
327 B
C
19 řádky
327 B
C
#include "xmss_commons.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
void to_byte(unsigned char *out, uint in, int bytes)
|
|
{
|
|
int i;
|
|
for(i = 0; i < bytes; i++){
|
|
out[i] = in & 0xff;
|
|
in = in >> 8;
|
|
}
|
|
}
|
|
|
|
void hexdump(const unsigned char *a, size_t len)
|
|
{
|
|
size_t i;
|
|
for (i = 0; i < len; i++)
|
|
printf("%02x", a[i]);
|
|
} |