summaryrefslogtreecommitdiff
path: root/package/toolbox/src/lib/md5hlp.c
blob: 9c7958a7388070737dd1731099489a27d9443e6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* collection of data, not copyrightable */

#include <sys/types.h>
#include <stdint.h>

__RCSID("$MirOS: src/kern/c/miscdata.c,v 1.1 2011/11/20 18:28:09 tg Exp $");

const uint8_t RFC1321_padding[64] = {
	0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};