| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef NETTLE_ARCTWO_H_INCLUDED |
| #define NETTLE_ARCTWO_H_INCLUDED |
|
|
| #include "nettle-types.h" |
|
|
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
|
|
| |
| #define arctwo_set_key nettle_arctwo_set_key |
| #define arctwo_set_key_ekb nettle_arctwo_set_key_ekb |
| #define arctwo_set_key_gutmann nettle_arctwo_set_key_gutmann |
| #define arctwo40_set_key nettle_arctwo40_set_key |
| #define arctwo64_set_key nettle_arctwo64_set_key |
| #define arctwo128_set_key nettle_arctwo128_set_key |
| #define arctwo128_set_key_gutmann nettle_arctwo128_set_key_gutmann |
| #define arctwo_encrypt nettle_arctwo_encrypt |
| #define arctwo_decrypt nettle_arctwo_decrypt |
|
|
| #define ARCTWO_BLOCK_SIZE 8 |
|
|
| |
| #define ARCTWO_MIN_KEY_SIZE 1 |
| #define ARCTWO_MAX_KEY_SIZE 128 |
|
|
| #define ARCTWO_KEY_SIZE 8 |
|
|
| struct arctwo_ctx |
| { |
| uint16_t S[64]; |
| }; |
|
|
| |
| |
| void |
| arctwo_set_key_ekb (struct arctwo_ctx *ctx, |
| size_t length, const uint8_t * key, unsigned ekb); |
|
|
| |
| void |
| arctwo_set_key (struct arctwo_ctx *ctx, size_t length, const uint8_t *key); |
| void |
| arctwo40_set_key (struct arctwo_ctx *ctx, const uint8_t *key); |
| void |
| arctwo64_set_key (struct arctwo_ctx *ctx, const uint8_t *key); |
| void |
| arctwo128_set_key (struct arctwo_ctx *ctx, const uint8_t *key); |
|
|
| |
| void |
| arctwo_set_key_gutmann (struct arctwo_ctx *ctx, |
| size_t length, const uint8_t *key); |
| void |
| arctwo128_set_key_gutmann (struct arctwo_ctx *ctx, |
| const uint8_t *key); |
|
|
| void |
| arctwo_encrypt (struct arctwo_ctx *ctx, |
| size_t length, uint8_t *dst, const uint8_t *src); |
| void |
| arctwo_decrypt (struct arctwo_ctx *ctx, |
| size_t length, uint8_t *dst, const uint8_t *src); |
|
|
| #ifdef __cplusplus |
| } |
| #endif |
|
|
| #endif |
|
|