[BACK]Return to gentcfskey.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tcfs

File: [local] / src / usr.bin / tcfs / Attic / gentcfskey.c (download)

Revision 1.4, Tue Jun 20 07:58:56 2000 UTC (23 years, 11 months ago) by fgsch
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.3: +6 -6 lines

add openbsd tags. rearrange headers as per style(9) and indent.
replace some strcpy by strlcpy.

/*	$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);
}