File nut/include/contrib/crypto/seed.h
Included Files
#include <nut/include/include/stdint.h>
Preprocessor definitions
* \file seed.h * \author Daniel Otte * \date 2007-06-1 * \brief declarations for seed * \par License * GPL *
#define SEED_H_
Typedef seed_ctx_t
\typedef seed_ctx_t * \brief SEED context * * A variable of this type may hold the key material for the SEED cipher. * This context is regulary generated by the * void seed_init(const void * key, seed_ctx_t * ctx) function.
typedef struct {...} seed_ctx_t
struct
{
uint32_t k[4];
}