i2pd/libi2pd/Gost.h

71 lines
2.0 KiB
C
Raw Permalink Normal View History

/*
* Copyright (c) 2013-2020, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2017-03-14 03:28:36 +03:00
#ifndef GOST_H__
#define GOST_H__
#include <memory>
#include <openssl/ec.h>
namespace i2p
{
namespace crypto
{
// ГОСТ Р 34.10
2018-01-06 06:48:51 +03:00
2017-03-14 03:28:36 +03:00
enum GOSTR3410ParamSet
{
eGOSTR3410CryptoProA = 0, // 1.2.643.2.2.35.1
2017-03-14 23:02:16 +03:00
// XchA = A, XchB = C
//eGOSTR3410CryptoProXchA, // 1.2.643.2.2.36.0
//eGOSTR3410CryptoProXchB, // 1.2.643.2.2.36.1
eGOSTR3410TC26A512, // 1.2.643.7.1.2.1.2.1
2017-03-14 03:28:36 +03:00
eGOSTR3410NumParamSets
2018-01-06 06:48:51 +03:00
};
2017-03-14 03:28:36 +03:00
class GOSTR3410Curve
{
public:
GOSTR3410Curve (BIGNUM * a, BIGNUM * b, BIGNUM * p, BIGNUM * q, BIGNUM * x, BIGNUM * y);
2018-01-06 06:48:51 +03:00
~GOSTR3410Curve ();
2017-03-14 03:28:36 +03:00
2018-01-06 06:48:51 +03:00
size_t GetKeyLen () const { return m_KeyLen; };
2017-03-24 02:26:39 +03:00
const EC_GROUP * GetGroup () const { return m_Group; };
2017-03-14 03:28:36 +03:00
EC_POINT * MulP (const BIGNUM * n) const;
bool GetXY (const EC_POINT * p, BIGNUM * x, BIGNUM * y) const;
EC_POINT * CreatePoint (const BIGNUM * x, const BIGNUM * y) const;
void Sign (const BIGNUM * priv, const BIGNUM * digest, BIGNUM * r, BIGNUM * s);
bool Verify (const EC_POINT * pub, const BIGNUM * digest, const BIGNUM * r, const BIGNUM * s);
EC_POINT * RecoverPublicKey (const BIGNUM * digest, const BIGNUM * r, const BIGNUM * s, bool isNegativeY = false) const;
2018-01-06 06:48:51 +03:00
2017-03-14 03:28:36 +03:00
private:
EC_GROUP * m_Group;
2017-03-14 23:41:06 +03:00
size_t m_KeyLen; // in bytes
2017-03-14 03:28:36 +03:00
};
std::unique_ptr<GOSTR3410Curve>& GetGOSTR3410Curve (GOSTR3410ParamSet paramSet);
2017-03-16 20:31:25 +03:00
2017-04-07 18:17:40 +03:00
// Big Endian
2017-03-16 20:31:25 +03:00
void GOSTR3411_2012_256 (const uint8_t * buf, size_t len, uint8_t * digest);
2018-01-06 06:48:51 +03:00
void GOSTR3411_2012_512 (const uint8_t * buf, size_t len, uint8_t * digest);
2017-04-07 18:17:40 +03:00
// Little Endian
struct GOSTR3411_2012_CTX;
GOSTR3411_2012_CTX * GOSTR3411_2012_CTX_new ();
void GOSTR3411_2012_CTX_Init (GOSTR3411_2012_CTX * ctx, bool is512 = true);
void GOSTR3411_2012_CTX_Update (const uint8_t * buf, size_t len, GOSTR3411_2012_CTX * ctx);
2018-01-06 06:48:51 +03:00
void GOSTR3411_2012_CTX_Finish (uint8_t * digest, GOSTR3411_2012_CTX * ctx);
2017-04-07 18:17:40 +03:00
void GOSTR3411_2012_CTX_free (GOSTR3411_2012_CTX * ctx);
2017-03-14 03:28:36 +03:00
}
}
2017-03-14 23:02:16 +03:00
#endif