X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=threefish.h;h=0d3a413a8a8f84f6f23c914e4cb95d626a1f04cc;hb=4147d732efd04605764a2820d4478f33a0cdf1fa;hp=73871a48302b229853e966d47dacba4291eb51d8;hpb=56a151edecefbaeab43dac22c89a3bb9fe4f470e;p=avr-crypto-lib.git diff --git a/threefish.h b/threefish.h index 73871a4..0d3a413 100644 --- a/threefish.h +++ b/threefish.h @@ -28,6 +28,14 @@ #include +#define THREEFISH256_BLOCKSIZE 256 +#define THREEFISH256_BLOCKSIZE_B ((THREEFISH256_BLOCKSIZE+7)/8) +#define THREEFISH512_BLOCKSIZE 512 +#define THREEFISH512_BLOCKSIZE_B ((THREEFISH512_BLOCKSIZE+7)/8) +#define THREEFISH1024_BLOCKSIZE 1024 +#define THREEFISH1024_BLOCKSIZE_B ((THREEFISH1024_BLOCKSIZE+7)/8) + + typedef struct{ uint64_t k[5]; uint64_t t[3]; @@ -46,6 +54,8 @@ typedef struct{ } threefish1024_ctx_t; +void threefish_mix(void* data, uint8_t rot); +void threefish256_init_c(void* key, void* tweak, threefish256_ctx_t* ctx); void threefish256_init(void* key, void* tweak, threefish256_ctx_t* ctx); void threefish512_init(void* key, void* tweak, threefish512_ctx_t* ctx);