aboutsummaryrefslogtreecommitdiff
path: root/gost89.h
diff options
context:
space:
mode:
authorDmitry Belyavskiy <beldmit@gmail.com>2018-06-08 16:53:39 +0300
committerDmitry Belyavskiy <beldmit@gmail.com>2018-06-08 16:53:39 +0300
commitc5958ad35eb481ec342fef73bb4544fd8846eeb5 (patch)
treeb2311d509a601c87b1782c78b2190b1963015cc7 /gost89.h
parent70c5f3b3b65ed156144ca64ac666dc4400d51e19 (diff)
downloadgost-engine-c5958ad35eb481ec342fef73bb4544fd8846eeb5.zip
gost-engine-c5958ad35eb481ec342fef73bb4544fd8846eeb5.tar.gz
gost-engine-c5958ad35eb481ec342fef73bb4544fd8846eeb5.tar.bz2
Start implementing MAGMA algorithm
Diffstat (limited to 'gost89.h')
-rw-r--r--gost89.h2
1 files changed, 2 insertions, 0 deletions
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 */