├── .gitignore ├── BSGS.cpp ├── BSGS.h ├── HashTable.cpp ├── HashTable.h ├── LICENSE.txt ├── Makefile ├── README.md ├── SECPK1 ├── Int.cpp ├── Int.h ├── IntGroup.cpp ├── IntGroup.h ├── IntMod.cpp ├── Point.cpp ├── Point.h ├── Random.cpp ├── Random.h ├── SECP256K1.cpp └── SECP256k1.h ├── Thread.cpp ├── Timer.cpp ├── Timer.h ├── VC ├── BSGS.sln ├── BSGS.vcxproj ├── BSGS.vcxproj.filters └── in.txt ├── in.txt └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/.gitignore -------------------------------------------------------------------------------- /BSGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/BSGS.cpp -------------------------------------------------------------------------------- /BSGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/BSGS.h -------------------------------------------------------------------------------- /HashTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/HashTable.cpp -------------------------------------------------------------------------------- /HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/HashTable.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/README.md -------------------------------------------------------------------------------- /SECPK1/Int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/Int.cpp -------------------------------------------------------------------------------- /SECPK1/Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/Int.h -------------------------------------------------------------------------------- /SECPK1/IntGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/IntGroup.cpp -------------------------------------------------------------------------------- /SECPK1/IntGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/IntGroup.h -------------------------------------------------------------------------------- /SECPK1/IntMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/IntMod.cpp -------------------------------------------------------------------------------- /SECPK1/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/Point.cpp -------------------------------------------------------------------------------- /SECPK1/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/Point.h -------------------------------------------------------------------------------- /SECPK1/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/Random.cpp -------------------------------------------------------------------------------- /SECPK1/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/Random.h -------------------------------------------------------------------------------- /SECPK1/SECP256K1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/SECP256K1.cpp -------------------------------------------------------------------------------- /SECPK1/SECP256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/SECPK1/SECP256k1.h -------------------------------------------------------------------------------- /Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/Thread.cpp -------------------------------------------------------------------------------- /Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/Timer.cpp -------------------------------------------------------------------------------- /Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/Timer.h -------------------------------------------------------------------------------- /VC/BSGS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/VC/BSGS.sln -------------------------------------------------------------------------------- /VC/BSGS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/VC/BSGS.vcxproj -------------------------------------------------------------------------------- /VC/BSGS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/VC/BSGS.vcxproj.filters -------------------------------------------------------------------------------- /VC/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/VC/in.txt -------------------------------------------------------------------------------- /in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/in.txt -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanLucPons/BSGS/HEAD/main.cpp --------------------------------------------------------------------------------