secp256k1-zkp/field.h
2013-03-30 21:49:52 +01:00

22 lines
296 B
C++

#ifndef _SECP256K1_FIELD_
#define _SECP256K1_FIELD_
// just one implementation for now
#include "field_5x52.h"
namespace secp256k1 {
class FieldConstants {
public:
secp256k1_num_t field_p;
FieldConstants();
~FieldConstants();
};
const FieldConstants &GetFieldConst();
}
#endif