blob: cd62bedef7e6d2edfa931511389c306510fa4f5a (
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
|
/* $OpenBSD: cast.c,v 1.2 2001/01/28 22:38:48 niklas Exp $ */
/*
* Created by Martin Rinman, rinman@erlang.ericsson.se
* Copyright (C) 1998 Ericsson Radio Systems AB
*/
#include <assert.h>
#include <sys/types.h>
#include "cast.h"
void
cast_setkey(cast_key* key, u_int8_t* rawkey, int keybytes) {
assert("cast_setkey not implemented yet");
}
void
cast_encrypt(cast_key* key, u_int8_t* inblock, u_int8_t* outblock) {
assert("cast_encrypt not implemented yet");
}
void
cast_decrypt(cast_key* key, u_int8_t* inblock, u_int8_t* outblock) {
assert("cast_decrypt not implemented yet");
}
|