From c5958ad35eb481ec342fef73bb4544fd8846eeb5 Mon Sep 17 00:00:00 2001 From: Dmitry Belyavskiy Date: Fri, 8 Jun 2018 16:53:39 +0300 Subject: Start implementing MAGMA algorithm --- gost89.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gost89.h') diff --git a/gost89.h b/gost89.h index 13f35e1..59a938f 100644 --- a/gost89.h +++ b/gost89.h @@ -59,6 +59,8 @@ void gostcrypt(gost_ctx * c, const byte * in, byte * out); void gostdecrypt(gost_ctx * c, const byte * in, byte * out); /* Set key into context */ void gost_key(gost_ctx * ctx, const byte * key); +/* Set key into context */ +void magma_key(gost_ctx * ctx, const byte * key); /* Get key from context */ void gost_get_key(gost_ctx * ctx, byte * key); /* Set S-blocks into context */ -- cgit v1.1