summaryrefslogtreecommitdiff
path: root/sys/crypto/cast128/cast128.h
blob: 9abb153027a0fe6854980a675add6b72cef86526 (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
/*	$NetBSD: cast128.h,v 1.7 2005/12/11 12:20:52 christos Exp $ */
/*      $OpenBSD: cast.h,v 1.2 2002/03/14 01:26:51 millert Exp $       */

/*
 *	CAST-128 in C
 *	Written by Steve Reid <sreid@sea-to-sky.net>
 *	100% Public Domain - no warranty
 *	Released 1997.10.11
 */

#ifndef _CAST128_H_
#define _CAST128_H_

typedef struct {
	u_int32_t	xkey[32];	/* Key, after expansion */
	int		rounds;		/* Number of rounds to use, 12 or 16 */
} cast128_key;

void cast128_setkey(cast128_key *key, const u_int8_t *rawkey, int keybytes);
void cast128_encrypt(const cast128_key *key, const u_int8_t *inblock,
		     u_int8_t *outblock);
void cast128_decrypt(const cast128_key *key, const u_int8_t *inblock,
		     u_int8_t *outblock);

#endif /* _CAST128_H_ */