twofish.h
Go to the documentation of this file.
General definitions for cryptographic algorithms.
error_t twofishInit(TwofishContext *context, const uint8_t *key, size_t keyLen)
Key expansion.
Definition: twofish.c:249
void twofishEncryptBlock(TwofishContext *context, const uint8_t *input, uint8_t *output)
Encrypt a 16-byte block using Twofish algorithm.
Definition: twofish.c:335
void twofishDecryptBlock(TwofishContext *context, const uint8_t *input, uint8_t *output)
Decrypt a 16-byte block using Twofish algorithm.
Definition: twofish.c:417