blob: c0e429207fdb38733656f994805b34616375f2ba (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* $OpenBSD: gentcfskey.c,v 1.4 2000/06/20 07:58:56 fgsch Exp $ */
/*
* Transparent Cryptographic File System (TCFS) for NetBSD
* Author and mantainer: Luigi Catuogno [luicat@tcfs.unisa.it]
*
* references: http://tcfs.dia.unisa.it
* tcfs-bsd@tcfs.unisa.it
*/
/*
* Base utility set v0.1
*/
#include <sys/time.h>
#include <err.h>
#include <fcntl.h>
#include <md5.h>
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
#include <miscfs/tcfs/tcfs.h>
#include "tcfsdefines.h"
u_char *
gentcfskey(void)
{
u_char *buff;
MD5_CTX ctx, ctx2;
u_int32_t tmp[KEYSIZE];
u_char digest[16];
int i;
buff = (u_char *)calloc(KEYSIZE + 1, sizeof(char));
/* Generate random key */
for (i = 0; i < KEYSIZE; i ++)
tmp[i] = arc4random();
MD5Init(&ctx);
for (i = 0; i < KEYSIZE; i += 16) {
MD5Update(&ctx, (u_char *)tmp, sizeof(tmp));
ctx2 = ctx;
MD5Final(digest, &ctx2);
memcpy(buff + i, digest, KEYSIZE - i > 16 ? 16 : KEYSIZE - i);
}
buff[KEYSIZE] = '\0';
memset(&ctx, 0, sizeof(ctx));
return (buff);
}
|