]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - threefish.h
threefish encrytion in 512 and 1024 bit in assembler
[avr-crypto-lib.git] / threefish.h
index eaa369cbfced4674a23179ebeb74ba11d8df9533..fe3ce783c141c1c81c2b58ce82602e5bb6fc71cd 100644 (file)
@@ -66,5 +66,7 @@ void threefish512_enc(void* data, const threefish512_ctx_t* ctx);
 void threefish1024_enc(void* data, const threefish1024_ctx_t* ctx);
 
 void threefish256_dec(void* data, const threefish256_ctx_t* ctx);
+void threefish512_dec(void* data, const threefish512_ctx_t* ctx);
+void threefish1024_dec(void* data, const threefish1024_ctx_t* ctx);
 
 #endif /* THREEFISH_H_ */