mirror of https://github.com/GOSTSec/poolserver
orignal
8 years ago
4 changed files with 1094 additions and 0 deletions
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2017, The PurpleI2P Project |
||||
* |
||||
* This file is part of Purple i2pd project and licensed under BSD3 |
||||
* |
||||
*/ |
||||
|
||||
#ifndef GOST_H__ |
||||
#define GOST_H__ |
||||
|
||||
#include <inttypes.h> |
||||
|
||||
namespace i2p |
||||
{ |
||||
namespace crypto |
||||
{ |
||||
|
||||
// Big Endian
|
||||
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); |
||||
} |
||||
} |
||||
|
||||
#endif |
Loading…
Reference in new issue