1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-09-01 07:58:12 +02:00

Adding vendor/secp256k1-0.3.0

This commit is contained in:
Henrik Hautakoski 2023-03-11 13:27:54 +01:00
parent 8a55500854
commit e8ee3fc0de
132 changed files with 59850 additions and 0 deletions

17
vendor/secp256k1-0.3.0/src/scalar_low.h vendored Normal file
View file

@ -0,0 +1,17 @@
/***********************************************************************
* Copyright (c) 2015 Andrew Poelstra *
* Distributed under the MIT software license, see the accompanying *
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
***********************************************************************/
#ifndef SECP256K1_SCALAR_REPR_H
#define SECP256K1_SCALAR_REPR_H
#include <stdint.h>
/** A scalar modulo the group order of the secp256k1 curve. */
typedef uint32_t secp256k1_scalar;
#define SECP256K1_SCALAR_CONST(d7, d6, d5, d4, d3, d2, d1, d0) (d0)
#endif /* SECP256K1_SCALAR_REPR_H */