GOST R 34.11-2012 implementation

This commit is contained in:
orignal 2017-03-16 13:31:25 -04:00
parent 8de8de1b1e
commit 8b40354786
2 changed files with 103 additions and 13 deletions

3
Gost.h
View file

@ -45,6 +45,9 @@ namespace crypto
};
std::unique_ptr<GOSTR3410Curve>& GetGOSTR3410Curve (GOSTR3410ParamSet paramSet);
void GOSTR3411_2012_256 (const uint8_t * buf, size_t len, uint8_t * digest);
void GOSTR3411_2012_512 (const uint8_t * buf, size_t len, uint8_t * digest);
}
}