#ifndef TEA_KGEN_H #define TEA_KGEN_H /* * TEA Total Copyright (c) Alex Holden 2000. * * This code is public domain; you can do whatever you want with it, though I * would prefer you to contribute any bug fixes back to me if possible. * This software comes with NO WARRANTY WHATSOEVER, not even the implied * warranties of merchantability and fitness for a particular purpose. */ extern void init_tea_kgen(teastate *state); extern void do_tea_kgen(teastate *state); extern void generate_key(teastate *state); #endif