Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 611 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 611 Bytes

Kuznechik C

C implementation of GOST Kuznechik cipher.

How to use?

// I use gcc compiler and its mean that you
// must include static lib libkuznec.a with linker

// 1) After pev step you must include header
#include "kuznec.h"

// 2) Then use corresponding func for enc/dec 
long long int* ENC(long long int* input, long long int* key);
long long int* DEC(long long int* input, long long int* key);

Where did i get Kuznechik description?

Paper name: "КРИПТОГРАФИЧЕСКАЯ ЗАЩИТА ИНФОРМАЦИИ"

Source: http://wwwold.tc26.ru/standard/gost/GOST_R_3412-2015.pdf