4 #include "blockcipher_descriptor.h"
6 #include "keysize_descriptor.h"
8 const char noekeon_direct_str[] = "Noekeon-Direct";
9 const char noekeon_indirect_str[] = "Noekeon-Indirect";
11 const uint8_t noekeon_keysize_desc[] = { KS_TYPE_LIST, 1, KS_INT(128),
14 const bcdesc_t noekeon_direct_desc = {
15 BCDESC_TYPE_BLOCKCIPHER,
21 {(void_fpt)noekeon_enc},
22 {(void_fpt)noekeon_dec},
27 const bcdesc_t noekeon_indirect_desc = {
28 BCDESC_TYPE_BLOCKCIPHER,
29 BC_INIT_TYPE_1 | BC_ENC_TYPE_1,
33 {(void_fpt)noekeon_init},
34 {(void_fpt)noekeon_enc},
35 {(void_fpt)noekeon_dec},