├── README.md ├── amazonEC2 ├── amazon.py ├── instances.py ├── keys │ ├── .gitignore │ └── PUT_PUBLIC_KEYS_OF_REGIONS_HERE ├── node_cpp_code │ ├── .gitignore │ └── COPY_CONTENTS_OF_CODE_FOLDER_HERE ├── params.py └── regions.py └── code ├── Blockchain.cpp ├── Blockchain.hpp ├── Makefile ├── MersenneTwister.h ├── MyServer.cpp ├── MyServer.hpp ├── _configuration ├── _ecc_key ├── _peer_ip_allowed ├── _peers ├── configuration.cpp ├── configuration.h ├── crypto_stuff.cpp ├── crypto_stuff.h ├── get_ip.cpp ├── get_ip.h ├── machine_id.cpp ├── miner.cpp ├── miner.h ├── misc.cpp ├── misc.h ├── node.cpp ├── params.h ├── process_buffer.cpp ├── process_buffer.h ├── quick_test.sh ├── requests.cpp ├── requests.h ├── transactions.cpp ├── transactions.h ├── verify.cpp └── verify.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/README.md -------------------------------------------------------------------------------- /amazonEC2/amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/amazonEC2/amazon.py -------------------------------------------------------------------------------- /amazonEC2/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/amazonEC2/instances.py -------------------------------------------------------------------------------- /amazonEC2/keys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/amazonEC2/keys/.gitignore -------------------------------------------------------------------------------- /amazonEC2/keys/PUT_PUBLIC_KEYS_OF_REGIONS_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amazonEC2/node_cpp_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/amazonEC2/node_cpp_code/.gitignore -------------------------------------------------------------------------------- /amazonEC2/node_cpp_code/COPY_CONTENTS_OF_CODE_FOLDER_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amazonEC2/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/amazonEC2/params.py -------------------------------------------------------------------------------- /amazonEC2/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/amazonEC2/regions.py -------------------------------------------------------------------------------- /code/Blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/Blockchain.cpp -------------------------------------------------------------------------------- /code/Blockchain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/Blockchain.hpp -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/Makefile -------------------------------------------------------------------------------- /code/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/MersenneTwister.h -------------------------------------------------------------------------------- /code/MyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/MyServer.cpp -------------------------------------------------------------------------------- /code/MyServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/MyServer.hpp -------------------------------------------------------------------------------- /code/_configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/_configuration -------------------------------------------------------------------------------- /code/_ecc_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/_ecc_key -------------------------------------------------------------------------------- /code/_peer_ip_allowed: -------------------------------------------------------------------------------- 1 | 127.0.0.1 -------------------------------------------------------------------------------- /code/_peers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/_peers -------------------------------------------------------------------------------- /code/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/configuration.cpp -------------------------------------------------------------------------------- /code/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/configuration.h -------------------------------------------------------------------------------- /code/crypto_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/crypto_stuff.cpp -------------------------------------------------------------------------------- /code/crypto_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/crypto_stuff.h -------------------------------------------------------------------------------- /code/get_ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/get_ip.cpp -------------------------------------------------------------------------------- /code/get_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/get_ip.h -------------------------------------------------------------------------------- /code/machine_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/machine_id.cpp -------------------------------------------------------------------------------- /code/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/miner.cpp -------------------------------------------------------------------------------- /code/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/miner.h -------------------------------------------------------------------------------- /code/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/misc.cpp -------------------------------------------------------------------------------- /code/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/misc.h -------------------------------------------------------------------------------- /code/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/node.cpp -------------------------------------------------------------------------------- /code/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/params.h -------------------------------------------------------------------------------- /code/process_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/process_buffer.cpp -------------------------------------------------------------------------------- /code/process_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/process_buffer.h -------------------------------------------------------------------------------- /code/quick_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/quick_test.sh -------------------------------------------------------------------------------- /code/requests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/requests.cpp -------------------------------------------------------------------------------- /code/requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/requests.h -------------------------------------------------------------------------------- /code/transactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/transactions.cpp -------------------------------------------------------------------------------- /code/transactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/transactions.h -------------------------------------------------------------------------------- /code/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/verify.cpp -------------------------------------------------------------------------------- /code/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivicanikolicsg/OHIE/HEAD/code/verify.h --------------------------------------------------------------------------------