mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 03:03:22 -03:00
17 lines
306 B
C++
17 lines
306 B
C++
#ifndef _SECP256K1_SCALAR_
|
|
#define _SECP256K1_SCALAR_
|
|
|
|
#include "num.h"
|
|
#include "consts.h"
|
|
|
|
namespace secp256k1 {
|
|
/** Implements arithmetic modulo FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE BAAEDCE6 AF48A03B BFD25E8C D0364141,
|
|
* using OpenSSL's BIGNUM
|
|
*/
|
|
class Scalar : private Number {
|
|
public:
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|