├── .gitignore ├── Activity1.nvact ├── Algo256 ├── blake256.cu ├── blake2s.cu ├── bmw.cu ├── cuda_blake256.cu ├── cuda_bmw.cu ├── cuda_bmw256.cu ├── cuda_cubehash256.cu ├── cuda_fugue256.cu ├── cuda_groestl256.cu ├── cuda_keccak256.cu ├── cuda_lyra2Z.cu ├── cuda_lyra2Z_sm5.cuh ├── cuda_skein256.cu ├── decred.cu ├── keccak256.cu └── vanilla.cu ├── JHA ├── cuda_jha_compactionTest.cu ├── cuda_jha_keccak512.cu └── jackpotcoin.cu ├── LICENSE.txt ├── Makefile.am ├── README.md ├── README.txt ├── RUN-LBC-YIIMP.cmd ├── RUN-ZCOIN-MTP.cmd ├── algos.h ├── api.cpp ├── api ├── index.php ├── local-sample.php ├── summary.pl └── websocket.htm ├── argon2ref ├── argon2.c ├── argon2.h ├── blake2-impl.h ├── blake2.h ├── blake2b-load-sse2.h ├── blake2b-load-sse41.h ├── blake2b-round.h ├── blake2ba.c ├── blamka-round-opt.h ├── blamka-round-ref.h ├── core.c ├── core.h ├── encoding.c ├── encoding.h ├── ref.c ├── thread.c └── thread.h ├── autogen.sh ├── base58.cpp ├── bench.cpp ├── bignum.cpp ├── bignum.hpp ├── ccminer.conf ├── ccminer.cpp ├── ccminer.sln ├── ccminer.vcxproj ├── ccminer.vcxproj.filters ├── compat.h ├── compat ├── Makefile.am ├── bignum_ssl10.hpp ├── bos-jansson │ ├── Makefile.am │ ├── bos_deserializer.c │ ├── bos_serializer.c │ ├── bosjansson.def │ ├── bosjansson.h │ ├── configure.ac │ ├── dump.c │ ├── error.c │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtable_seed.c │ ├── jansson_config.h │ ├── jansson_config.h.in │ ├── jansson_private.h │ ├── jansson_private_config.h │ ├── libbosjansson.a │ ├── load.c │ ├── lookup3.h │ ├── memory.c │ ├── pack_unpack.c │ ├── strbuffer.c │ ├── strbuffer.h │ ├── strconv.c │ ├── utf.c │ ├── utf.h │ └── value.c ├── ccminer-config.h ├── curl-for-windows │ ├── curl │ │ └── include │ │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ └── typecheck-gcc.h │ ├── openssl │ │ ├── config │ │ │ └── opensslconf.h │ │ └── openssl │ │ │ ├── crypto │ │ │ ├── opensslconf.h │ │ │ └── sha │ │ │ │ └── sha.h │ │ │ ├── e_os2.h │ │ │ └── include │ │ │ └── openssl │ │ │ ├── bn.h │ │ │ ├── crypto.h │ │ │ ├── e_os2.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── stack.h │ │ │ └── symhacks.h │ └── zlib │ │ ├── zconf.h │ │ └── zlib.h ├── getopt │ ├── getopt.h │ └── getopt_long.c ├── gettimeofday.c ├── includes-x64 │ └── openssl │ │ ├── aes.h │ │ ├── applink.c │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── includes-x86 │ └── openssl │ │ ├── aes.h │ │ ├── applink.c │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── includes │ ├── curl │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h │ ├── pthreads │ │ ├── pthread.h │ │ └── sched.h │ └── zlib │ │ ├── zconf.h │ │ └── zlib.h ├── inttypes.h ├── jansson │ ├── .gitignore │ ├── Makefile.am │ ├── configure.ac │ ├── dump.c │ ├── error.c │ ├── hashtable.c │ ├── hashtable.h │ ├── jansson.h │ ├── jansson_config.h │ ├── jansson_config.h.in │ ├── jansson_private.h │ ├── jansson_private_config.h │ ├── jansson_private_config.h.in │ ├── load.c │ ├── memory.c │ ├── pack_unpack.c │ ├── strbuffer.c │ ├── strbuffer.h │ ├── strconv.c │ ├── utf.c │ ├── utf.h │ ├── util.h │ └── value.c ├── libs │ ├── x64 │ │ ├── cuda100_mtplib.lib │ │ ├── cuda101_mtplib.lib │ │ ├── cuda92_mtplib.lib │ │ ├── libcryptoMT.lib │ │ ├── libcurl.lib │ │ ├── libeay32MT.lib │ │ ├── libgpu100.a │ │ ├── libgpu101.a │ │ ├── libgpu92.a │ │ ├── libsslMT.lib │ │ ├── pthreadVC2.lib │ │ ├── ssleay32MT.lib │ │ └── zlibstat.lib │ └── x86 │ │ ├── libcryptoMT.lib │ │ ├── libcurl.lib │ │ ├── libeay32MT.lib │ │ ├── libeay32MTd.lib │ │ ├── libsslMT.lib │ │ ├── pthreadVC2.lib │ │ ├── ssleay32MT.lib │ │ ├── ssleay32MTd.lib │ │ └── zlibstat.lib ├── nvapi │ ├── NVAPI.url │ ├── amd64 │ │ └── nvapi64.lib │ ├── nvHLSLExtns.h │ ├── nvHLSLExtnsInternal.h │ ├── nvShaderExtnEnums.h │ ├── nvapi.h │ ├── nvapi_ccminer.h │ ├── nvapi_lite_common.h │ ├── nvapi_lite_d3dext.h │ ├── nvapi_lite_salend.h │ ├── nvapi_lite_salstart.h │ ├── nvapi_lite_sli.h │ ├── nvapi_lite_stereo.h │ ├── nvapi_lite_surround.h │ └── x86 │ │ └── nvapi.lib ├── pthreads │ ├── pthread.h │ ├── sched.h │ ├── x64 │ │ └── pthreadVC2.lib │ └── x86 │ │ └── pthreadVC2.lib ├── stdbool.h ├── sys │ └── time.h ├── unistd.h ├── winansi.c └── winansi.h ├── configure.ac ├── configure.sh ├── crc32.c ├── cuda.cpp ├── cuda_checkhash.cu ├── cuda_debug.cuh ├── cuda_fugue256.h ├── cuda_groestlcoin.cu ├── cuda_groestlcoin.h ├── cuda_helper.h ├── cuda_mtp ├── cuda_mtp_forlib.cu └── mtp.cu ├── cuda_myriadgroestl.cu ├── cuda_skeincoin.cu ├── cuda_vector_uint2x4.h ├── elist.h ├── fuguecoin.cpp ├── groestlcoin.cpp ├── hashlog.cpp ├── heavy ├── cuda_blake512.cu ├── cuda_combine.cu ├── cuda_groestl512.cu ├── cuda_hefty1.cu ├── cuda_keccak512.cu ├── cuda_sha256.cu ├── heavy.cu └── heavy.h ├── hefty1.c ├── hefty1.h ├── lbry ├── cuda_lbry_merged.cu ├── cuda_sha256_lbry.cu ├── cuda_sha512_lbry.cu └── lbry.cu ├── lyra2 ├── Lyra2.c ├── Lyra2.h ├── Sponge.c ├── Sponge.h ├── cuda_lyra2.cu ├── cuda_lyra2Z.cu ├── cuda_lyra2Z_sm2.cuh ├── cuda_lyra2Z_sm5.cuh ├── cuda_lyra2_sm2.cuh ├── cuda_lyra2_sm5.cuh ├── cuda_lyra2_vectors.h ├── cuda_lyra2v2.cu ├── cuda_lyra2v2_sm3.cuh ├── lyra2RE.cu ├── lyra2REv2.cu └── lyra2Z.cu ├── m7 ├── cuda_m7_sha256.cu ├── cuda_mul.cu ├── cuda_mul2.cu ├── cuda_tiger192.cu ├── m7.cu ├── m7_keccak512.cu ├── m7_ripemd160.cu ├── m7_sha512.cu └── m7_whirlpool512.cu ├── merkletree ├── LICENSE ├── README.md ├── byteswap.h ├── definition.h ├── endian.h ├── merkle-tree.cpp ├── merkle-tree.hpp ├── mtp.cpp ├── mtp.h ├── prevector.h └── zeroafterfree.h ├── miner.h ├── myriadgroestl.cpp ├── neoscrypt ├── cuda_neoscrypt.cu ├── cuda_vectors.h ├── neoscrypt-cpu.c ├── neoscrypt.cpp └── neoscrypt.h ├── nvapi.cpp ├── nvml.cpp ├── nvml.h ├── nvreport.xml ├── pentablake.cu ├── pools.conf ├── pools.cpp ├── quark ├── cuda_bmw512.cu ├── cuda_bmw512_sm3.cuh ├── cuda_jh512.cu ├── cuda_quark.h ├── cuda_quark_blake512.cu ├── cuda_quark_blake512_sp.cuh ├── cuda_quark_compactionTest.cu ├── cuda_quark_groestl512.cu ├── cuda_quark_groestl512_sm20.cu ├── cuda_quark_keccak512.cu ├── cuda_skein512.cu ├── cuda_skein512_sp.cuh ├── groestl_functions_quad.h ├── groestl_transf_quad.h ├── nist5.cu └── quarkcoin.cu ├── qubit ├── deep.cu ├── luffa.cu ├── qubit.cu └── qubit_luffa512.cu ├── res ├── ccminer.ico ├── ccminer.rc └── resource.h ├── result.pdf ├── scrypt-jane.cpp ├── scrypt.cpp ├── scrypt ├── blake.cu ├── code │ ├── scrypt-conf.h │ ├── scrypt-jane-chacha.h │ ├── scrypt-jane-mix_chacha.h │ ├── scrypt-jane-portable-x86.h │ ├── scrypt-jane-portable.h │ ├── scrypt-jane-romix-basic.h │ └── scrypt-jane-romix-template.h ├── fermi_kernel.cu ├── fermi_kernel.h ├── keccak.cu ├── keccak.h ├── kepler_kernel.cu ├── kepler_kernel.h ├── nv_kernel.cu ├── nv_kernel.h ├── nv_kernel2.cu ├── nv_kernel2.h ├── salsa_kernel.cu ├── salsa_kernel.h ├── scrypt-jane.h ├── sha256.cu ├── sha256.h ├── test_kernel.cu ├── test_kernel.h ├── titan_kernel.cu └── titan_kernel.h ├── serialize.hpp ├── sia ├── sia-rpc.cpp ├── sia-rpc.h └── sia.cu ├── skein.cu ├── skein2.cpp ├── sph ├── aes_helper.c ├── blake.c ├── blake2b.c ├── blake2b.h ├── blake2s.c ├── blake2s.h ├── bmw.c ├── cubehash.c ├── echo.c ├── fugue.c ├── groestl.c ├── hamsi.c ├── hamsi_helper.c ├── haval.c ├── haval_helper.c ├── jh.c ├── keccak.c ├── luffa.c ├── md_helper.c ├── ripemd.c ├── sha2.c ├── sha2big.c ├── shabal.c ├── shavite.c ├── simd.c ├── skein.c ├── sph_blake.h ├── sph_bmw.h ├── sph_cubehash.h ├── sph_echo.h ├── sph_fugue.h ├── sph_groestl.h ├── sph_hamsi.h ├── sph_haval.h ├── sph_jh.h ├── sph_keccak.h ├── sph_luffa.h ├── sph_ripemd.h ├── sph_sha2.c ├── sph_sha2.h ├── sph_shabal.h ├── sph_shavite.h ├── sph_simd.h ├── sph_skein.h ├── sph_streebog.h ├── sph_tiger.h ├── sph_types.h ├── sph_whirlpool.h ├── streebog.c ├── tiger.c └── whirlpool.c ├── stats.cpp ├── sysinfos.cpp ├── test.csv ├── test2.txt ├── uint256.h ├── uint256.h_old ├── util.c ├── util.cpp ├── x11 ├── c11.cu ├── cuda_streebog.cu ├── cuda_x11.h ├── cuda_x11_aes.cuh ├── cuda_x11_cubehash512.cu ├── cuda_x11_echo.cu ├── cuda_x11_luffa512.cu ├── cuda_x11_luffa512_Cubehash.cu ├── cuda_x11_shavite512.cu ├── cuda_x11_simd512.cu ├── cuda_x11_simd512_func.cuh ├── cuda_x11_simd512_sm2.cuh ├── fresh.cu ├── s3.cu ├── sib.cu ├── veltor.cu ├── x11.cu └── x11evo.cu ├── x13 ├── cuda_x13_fugue512.cu ├── cuda_x13_hamsi512.cu └── x13.cu ├── x15 ├── cuda_whirlpoolx.cu ├── cuda_x14_shabal512.cu ├── cuda_x15_whirlpool.cu ├── whirlpool.cu ├── whirlpoolx.cu ├── x14.cu └── x15.cu ├── x17 ├── cuda_x17_haval256.cu ├── cuda_x17_sha512.cu └── x17.cu └── zr5.cu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/.gitignore -------------------------------------------------------------------------------- /Activity1.nvact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Activity1.nvact -------------------------------------------------------------------------------- /Algo256/blake256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/blake256.cu -------------------------------------------------------------------------------- /Algo256/blake2s.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/blake2s.cu -------------------------------------------------------------------------------- /Algo256/bmw.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/bmw.cu -------------------------------------------------------------------------------- /Algo256/cuda_blake256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_blake256.cu -------------------------------------------------------------------------------- /Algo256/cuda_bmw.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_bmw.cu -------------------------------------------------------------------------------- /Algo256/cuda_bmw256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_bmw256.cu -------------------------------------------------------------------------------- /Algo256/cuda_cubehash256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_cubehash256.cu -------------------------------------------------------------------------------- /Algo256/cuda_fugue256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_fugue256.cu -------------------------------------------------------------------------------- /Algo256/cuda_groestl256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_groestl256.cu -------------------------------------------------------------------------------- /Algo256/cuda_keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_keccak256.cu -------------------------------------------------------------------------------- /Algo256/cuda_lyra2Z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_lyra2Z.cu -------------------------------------------------------------------------------- /Algo256/cuda_lyra2Z_sm5.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_lyra2Z_sm5.cuh -------------------------------------------------------------------------------- /Algo256/cuda_skein256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/cuda_skein256.cu -------------------------------------------------------------------------------- /Algo256/decred.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/decred.cu -------------------------------------------------------------------------------- /Algo256/keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/keccak256.cu -------------------------------------------------------------------------------- /Algo256/vanilla.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Algo256/vanilla.cu -------------------------------------------------------------------------------- /JHA/cuda_jha_compactionTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/JHA/cuda_jha_compactionTest.cu -------------------------------------------------------------------------------- /JHA/cuda_jha_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/JHA/cuda_jha_keccak512.cu -------------------------------------------------------------------------------- /JHA/jackpotcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/JHA/jackpotcoin.cu -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/README.txt -------------------------------------------------------------------------------- /RUN-LBC-YIIMP.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/RUN-LBC-YIIMP.cmd -------------------------------------------------------------------------------- /RUN-ZCOIN-MTP.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/RUN-ZCOIN-MTP.cmd -------------------------------------------------------------------------------- /algos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/algos.h -------------------------------------------------------------------------------- /api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/api.cpp -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/api/index.php -------------------------------------------------------------------------------- /api/local-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/api/local-sample.php -------------------------------------------------------------------------------- /api/summary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/api/summary.pl -------------------------------------------------------------------------------- /api/websocket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/api/websocket.htm -------------------------------------------------------------------------------- /argon2ref/argon2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/argon2.c -------------------------------------------------------------------------------- /argon2ref/argon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/argon2.h -------------------------------------------------------------------------------- /argon2ref/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blake2-impl.h -------------------------------------------------------------------------------- /argon2ref/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blake2.h -------------------------------------------------------------------------------- /argon2ref/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blake2b-load-sse2.h -------------------------------------------------------------------------------- /argon2ref/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blake2b-load-sse41.h -------------------------------------------------------------------------------- /argon2ref/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blake2b-round.h -------------------------------------------------------------------------------- /argon2ref/blake2ba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blake2ba.c -------------------------------------------------------------------------------- /argon2ref/blamka-round-opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blamka-round-opt.h -------------------------------------------------------------------------------- /argon2ref/blamka-round-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/blamka-round-ref.h -------------------------------------------------------------------------------- /argon2ref/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/core.c -------------------------------------------------------------------------------- /argon2ref/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/core.h -------------------------------------------------------------------------------- /argon2ref/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/encoding.c -------------------------------------------------------------------------------- /argon2ref/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/encoding.h -------------------------------------------------------------------------------- /argon2ref/ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/ref.c -------------------------------------------------------------------------------- /argon2ref/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/thread.c -------------------------------------------------------------------------------- /argon2ref/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/argon2ref/thread.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/autogen.sh -------------------------------------------------------------------------------- /base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/base58.cpp -------------------------------------------------------------------------------- /bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/bench.cpp -------------------------------------------------------------------------------- /bignum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/bignum.cpp -------------------------------------------------------------------------------- /bignum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/bignum.hpp -------------------------------------------------------------------------------- /ccminer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/ccminer.conf -------------------------------------------------------------------------------- /ccminer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/ccminer.cpp -------------------------------------------------------------------------------- /ccminer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/ccminer.sln -------------------------------------------------------------------------------- /ccminer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/ccminer.vcxproj -------------------------------------------------------------------------------- /ccminer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/ccminer.vcxproj.filters -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat.h -------------------------------------------------------------------------------- /compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/Makefile.am -------------------------------------------------------------------------------- /compat/bignum_ssl10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bignum_ssl10.hpp -------------------------------------------------------------------------------- /compat/bos-jansson/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/Makefile.am -------------------------------------------------------------------------------- /compat/bos-jansson/bos_deserializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/bos_deserializer.c -------------------------------------------------------------------------------- /compat/bos-jansson/bos_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/bos_serializer.c -------------------------------------------------------------------------------- /compat/bos-jansson/bosjansson.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/bosjansson.def -------------------------------------------------------------------------------- /compat/bos-jansson/bosjansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/bosjansson.h -------------------------------------------------------------------------------- /compat/bos-jansson/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/configure.ac -------------------------------------------------------------------------------- /compat/bos-jansson/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/dump.c -------------------------------------------------------------------------------- /compat/bos-jansson/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/error.c -------------------------------------------------------------------------------- /compat/bos-jansson/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/hashtable.c -------------------------------------------------------------------------------- /compat/bos-jansson/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/hashtable.h -------------------------------------------------------------------------------- /compat/bos-jansson/hashtable_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/hashtable_seed.c -------------------------------------------------------------------------------- /compat/bos-jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/jansson_config.h -------------------------------------------------------------------------------- /compat/bos-jansson/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/jansson_config.h.in -------------------------------------------------------------------------------- /compat/bos-jansson/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/jansson_private.h -------------------------------------------------------------------------------- /compat/bos-jansson/jansson_private_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/jansson_private_config.h -------------------------------------------------------------------------------- /compat/bos-jansson/libbosjansson.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/libbosjansson.a -------------------------------------------------------------------------------- /compat/bos-jansson/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/load.c -------------------------------------------------------------------------------- /compat/bos-jansson/lookup3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/lookup3.h -------------------------------------------------------------------------------- /compat/bos-jansson/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/memory.c -------------------------------------------------------------------------------- /compat/bos-jansson/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/pack_unpack.c -------------------------------------------------------------------------------- /compat/bos-jansson/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/strbuffer.c -------------------------------------------------------------------------------- /compat/bos-jansson/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/strbuffer.h -------------------------------------------------------------------------------- /compat/bos-jansson/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/strconv.c -------------------------------------------------------------------------------- /compat/bos-jansson/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/utf.c -------------------------------------------------------------------------------- /compat/bos-jansson/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/utf.h -------------------------------------------------------------------------------- /compat/bos-jansson/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/bos-jansson/value.c -------------------------------------------------------------------------------- /compat/ccminer-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/ccminer-config.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curl.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curlbuild.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curlrules.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curlver.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/easy.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/mprintf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/multi.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/config/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/config/opensslconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/crypto/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/crypto/opensslconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/e_os2.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/bn.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/crypto.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | #include "../../e_os2.h" 2 | -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/opensslconf.h" 2 | -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/safestack.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/stack.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/symhacks.h -------------------------------------------------------------------------------- /compat/curl-for-windows/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/zlib/zconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/curl-for-windows/zlib/zlib.h -------------------------------------------------------------------------------- /compat/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/getopt/getopt.h -------------------------------------------------------------------------------- /compat/getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/getopt/getopt_long.c -------------------------------------------------------------------------------- /compat/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/gettimeofday.c -------------------------------------------------------------------------------- /compat/includes-x64/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/aes.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/applink.c -------------------------------------------------------------------------------- /compat/includes-x64/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/asn1.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/asn1_mac.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/asn1t.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/bio.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/blowfish.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/bn.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/buffer.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/camellia.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/cast.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/cmac.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/cms.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/comp.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/conf.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/conf_api.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/crypto.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/des.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/des_old.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/dh.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/dsa.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/dso.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/dtls1.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/e_os2.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ebcdic.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ec.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ecdh.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ecdsa.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/engine.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/err.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/evp.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/hmac.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/idea.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/krb5_asn.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/kssl.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/lhash.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/md4.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/md5.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/mdc2.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/modes.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/obj_mac.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/objects.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ocsp.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/opensslconf.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/opensslv.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ossl_typ.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/pem.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/pem2.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/pkcs12.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/pkcs7.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/pqueue.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/rand.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/rc2.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/rc4.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ripemd.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/rsa.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/safestack.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/seed.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/sha.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/srp.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/srtp.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ssl.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ssl2.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ssl23.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ssl3.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/stack.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/symhacks.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/tls1.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ts.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/txt_db.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ui.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/ui_compat.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/whrlpool.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/x509.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/x509_vfy.h -------------------------------------------------------------------------------- /compat/includes-x64/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x64/openssl/x509v3.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/aes.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/applink.c -------------------------------------------------------------------------------- /compat/includes-x86/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/asn1.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/asn1_mac.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/asn1t.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/bio.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/blowfish.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/bn.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/buffer.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/camellia.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/cast.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/cmac.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/cms.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/comp.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/conf.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/conf_api.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/crypto.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/des.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/des_old.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/dh.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/dsa.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/dso.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/dtls1.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/e_os2.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ebcdic.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ec.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ecdh.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ecdsa.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/engine.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/err.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/evp.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/hmac.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/idea.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/krb5_asn.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/kssl.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/lhash.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/md4.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/md5.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/mdc2.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/modes.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/obj_mac.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/objects.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ocsp.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/opensslconf.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/opensslv.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ossl_typ.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/pem.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/pem2.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/pkcs12.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/pkcs7.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/pqueue.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/rand.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/rc2.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/rc4.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ripemd.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/rsa.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/safestack.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/seed.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/sha.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/srp.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/srtp.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ssl.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ssl2.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ssl23.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ssl3.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/stack.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/symhacks.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/tls1.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ts.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/txt_db.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ui.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/ui_compat.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/whrlpool.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/x509.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/x509_vfy.h -------------------------------------------------------------------------------- /compat/includes-x86/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes-x86/openssl/x509v3.h -------------------------------------------------------------------------------- /compat/includes/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/curl.h -------------------------------------------------------------------------------- /compat/includes/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/curlbuild.h -------------------------------------------------------------------------------- /compat/includes/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/curlrules.h -------------------------------------------------------------------------------- /compat/includes/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/curlver.h -------------------------------------------------------------------------------- /compat/includes/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/easy.h -------------------------------------------------------------------------------- /compat/includes/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/mprintf.h -------------------------------------------------------------------------------- /compat/includes/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/multi.h -------------------------------------------------------------------------------- /compat/includes/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/stdcheaders.h -------------------------------------------------------------------------------- /compat/includes/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /compat/includes/pthreads/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/pthreads/pthread.h -------------------------------------------------------------------------------- /compat/includes/pthreads/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/pthreads/sched.h -------------------------------------------------------------------------------- /compat/includes/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/zlib/zconf.h -------------------------------------------------------------------------------- /compat/includes/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/includes/zlib/zlib.h -------------------------------------------------------------------------------- /compat/inttypes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /compat/jansson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/.gitignore -------------------------------------------------------------------------------- /compat/jansson/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/Makefile.am -------------------------------------------------------------------------------- /compat/jansson/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/configure.ac -------------------------------------------------------------------------------- /compat/jansson/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/dump.c -------------------------------------------------------------------------------- /compat/jansson/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/error.c -------------------------------------------------------------------------------- /compat/jansson/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/hashtable.c -------------------------------------------------------------------------------- /compat/jansson/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/hashtable.h -------------------------------------------------------------------------------- /compat/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/jansson.h -------------------------------------------------------------------------------- /compat/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/jansson_config.h -------------------------------------------------------------------------------- /compat/jansson/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/jansson_config.h.in -------------------------------------------------------------------------------- /compat/jansson/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/jansson_private.h -------------------------------------------------------------------------------- /compat/jansson/jansson_private_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/jansson_private_config.h -------------------------------------------------------------------------------- /compat/jansson/jansson_private_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/jansson_private_config.h.in -------------------------------------------------------------------------------- /compat/jansson/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/load.c -------------------------------------------------------------------------------- /compat/jansson/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/memory.c -------------------------------------------------------------------------------- /compat/jansson/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/pack_unpack.c -------------------------------------------------------------------------------- /compat/jansson/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/strbuffer.c -------------------------------------------------------------------------------- /compat/jansson/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/strbuffer.h -------------------------------------------------------------------------------- /compat/jansson/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/strconv.c -------------------------------------------------------------------------------- /compat/jansson/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/utf.c -------------------------------------------------------------------------------- /compat/jansson/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/utf.h -------------------------------------------------------------------------------- /compat/jansson/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/util.h -------------------------------------------------------------------------------- /compat/jansson/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/jansson/value.c -------------------------------------------------------------------------------- /compat/libs/x64/cuda100_mtplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/cuda100_mtplib.lib -------------------------------------------------------------------------------- /compat/libs/x64/cuda101_mtplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/cuda101_mtplib.lib -------------------------------------------------------------------------------- /compat/libs/x64/cuda92_mtplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/cuda92_mtplib.lib -------------------------------------------------------------------------------- /compat/libs/x64/libcryptoMT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libcryptoMT.lib -------------------------------------------------------------------------------- /compat/libs/x64/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libcurl.lib -------------------------------------------------------------------------------- /compat/libs/x64/libeay32MT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libeay32MT.lib -------------------------------------------------------------------------------- /compat/libs/x64/libgpu100.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libgpu100.a -------------------------------------------------------------------------------- /compat/libs/x64/libgpu101.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libgpu101.a -------------------------------------------------------------------------------- /compat/libs/x64/libgpu92.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libgpu92.a -------------------------------------------------------------------------------- /compat/libs/x64/libsslMT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/libsslMT.lib -------------------------------------------------------------------------------- /compat/libs/x64/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/libs/x64/ssleay32MT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/ssleay32MT.lib -------------------------------------------------------------------------------- /compat/libs/x64/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x64/zlibstat.lib -------------------------------------------------------------------------------- /compat/libs/x86/libcryptoMT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/libcryptoMT.lib -------------------------------------------------------------------------------- /compat/libs/x86/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/libcurl.lib -------------------------------------------------------------------------------- /compat/libs/x86/libeay32MT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/libeay32MT.lib -------------------------------------------------------------------------------- /compat/libs/x86/libeay32MTd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/libeay32MTd.lib -------------------------------------------------------------------------------- /compat/libs/x86/libsslMT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/libsslMT.lib -------------------------------------------------------------------------------- /compat/libs/x86/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/libs/x86/ssleay32MT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/ssleay32MT.lib -------------------------------------------------------------------------------- /compat/libs/x86/ssleay32MTd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/ssleay32MTd.lib -------------------------------------------------------------------------------- /compat/libs/x86/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/libs/x86/zlibstat.lib -------------------------------------------------------------------------------- /compat/nvapi/NVAPI.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://developer.nvidia.com/nvapi 3 | -------------------------------------------------------------------------------- /compat/nvapi/amd64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/amd64/nvapi64.lib -------------------------------------------------------------------------------- /compat/nvapi/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvHLSLExtns.h -------------------------------------------------------------------------------- /compat/nvapi/nvHLSLExtnsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvHLSLExtnsInternal.h -------------------------------------------------------------------------------- /compat/nvapi/nvShaderExtnEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvShaderExtnEnums.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_ccminer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_ccminer.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_common.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_d3dext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_d3dext.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_salend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_salend.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_salstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_salstart.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_sli.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_stereo.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/nvapi_lite_surround.h -------------------------------------------------------------------------------- /compat/nvapi/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/nvapi/x86/nvapi.lib -------------------------------------------------------------------------------- /compat/pthreads/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/pthreads/pthread.h -------------------------------------------------------------------------------- /compat/pthreads/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/pthreads/sched.h -------------------------------------------------------------------------------- /compat/pthreads/x64/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/pthreads/x64/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/pthreads/x86/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/pthreads/x86/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/stdbool.h -------------------------------------------------------------------------------- /compat/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/sys/time.h -------------------------------------------------------------------------------- /compat/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/unistd.h -------------------------------------------------------------------------------- /compat/winansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/winansi.c -------------------------------------------------------------------------------- /compat/winansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/compat/winansi.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/configure.sh -------------------------------------------------------------------------------- /crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/crc32.c -------------------------------------------------------------------------------- /cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda.cpp -------------------------------------------------------------------------------- /cuda_checkhash.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_checkhash.cu -------------------------------------------------------------------------------- /cuda_debug.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_debug.cuh -------------------------------------------------------------------------------- /cuda_fugue256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_fugue256.h -------------------------------------------------------------------------------- /cuda_groestlcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_groestlcoin.cu -------------------------------------------------------------------------------- /cuda_groestlcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_groestlcoin.h -------------------------------------------------------------------------------- /cuda_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_helper.h -------------------------------------------------------------------------------- /cuda_mtp/cuda_mtp_forlib.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_mtp/cuda_mtp_forlib.cu -------------------------------------------------------------------------------- /cuda_mtp/mtp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_mtp/mtp.cu -------------------------------------------------------------------------------- /cuda_myriadgroestl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_myriadgroestl.cu -------------------------------------------------------------------------------- /cuda_skeincoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_skeincoin.cu -------------------------------------------------------------------------------- /cuda_vector_uint2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/cuda_vector_uint2x4.h -------------------------------------------------------------------------------- /elist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/elist.h -------------------------------------------------------------------------------- /fuguecoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/fuguecoin.cpp -------------------------------------------------------------------------------- /groestlcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/groestlcoin.cpp -------------------------------------------------------------------------------- /hashlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/hashlog.cpp -------------------------------------------------------------------------------- /heavy/cuda_blake512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/cuda_blake512.cu -------------------------------------------------------------------------------- /heavy/cuda_combine.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/cuda_combine.cu -------------------------------------------------------------------------------- /heavy/cuda_groestl512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/cuda_groestl512.cu -------------------------------------------------------------------------------- /heavy/cuda_hefty1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/cuda_hefty1.cu -------------------------------------------------------------------------------- /heavy/cuda_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/cuda_keccak512.cu -------------------------------------------------------------------------------- /heavy/cuda_sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/cuda_sha256.cu -------------------------------------------------------------------------------- /heavy/heavy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/heavy.cu -------------------------------------------------------------------------------- /heavy/heavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/heavy/heavy.h -------------------------------------------------------------------------------- /hefty1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/hefty1.c -------------------------------------------------------------------------------- /hefty1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/hefty1.h -------------------------------------------------------------------------------- /lbry/cuda_lbry_merged.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lbry/cuda_lbry_merged.cu -------------------------------------------------------------------------------- /lbry/cuda_sha256_lbry.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lbry/cuda_sha256_lbry.cu -------------------------------------------------------------------------------- /lbry/cuda_sha512_lbry.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lbry/cuda_sha512_lbry.cu -------------------------------------------------------------------------------- /lbry/lbry.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lbry/lbry.cu -------------------------------------------------------------------------------- /lyra2/Lyra2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/Lyra2.c -------------------------------------------------------------------------------- /lyra2/Lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/Lyra2.h -------------------------------------------------------------------------------- /lyra2/Sponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/Sponge.c -------------------------------------------------------------------------------- /lyra2/Sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/Sponge.h -------------------------------------------------------------------------------- /lyra2/cuda_lyra2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2Z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2Z.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2Z_sm2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2Z_sm2.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2Z_sm5.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2Z_sm5.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2_sm2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2_sm2.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2_sm5.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2_sm5.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2_vectors.h -------------------------------------------------------------------------------- /lyra2/cuda_lyra2v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2v2.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2v2_sm3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/cuda_lyra2v2_sm3.cuh -------------------------------------------------------------------------------- /lyra2/lyra2RE.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/lyra2RE.cu -------------------------------------------------------------------------------- /lyra2/lyra2REv2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/lyra2REv2.cu -------------------------------------------------------------------------------- /lyra2/lyra2Z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/lyra2/lyra2Z.cu -------------------------------------------------------------------------------- /m7/cuda_m7_sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/cuda_m7_sha256.cu -------------------------------------------------------------------------------- /m7/cuda_mul.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/cuda_mul.cu -------------------------------------------------------------------------------- /m7/cuda_mul2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/cuda_mul2.cu -------------------------------------------------------------------------------- /m7/cuda_tiger192.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/cuda_tiger192.cu -------------------------------------------------------------------------------- /m7/m7.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/m7.cu -------------------------------------------------------------------------------- /m7/m7_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/m7_keccak512.cu -------------------------------------------------------------------------------- /m7/m7_ripemd160.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/m7_ripemd160.cu -------------------------------------------------------------------------------- /m7/m7_sha512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/m7_sha512.cu -------------------------------------------------------------------------------- /m7/m7_whirlpool512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/m7/m7_whirlpool512.cu -------------------------------------------------------------------------------- /merkletree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/LICENSE -------------------------------------------------------------------------------- /merkletree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/README.md -------------------------------------------------------------------------------- /merkletree/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/byteswap.h -------------------------------------------------------------------------------- /merkletree/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/definition.h -------------------------------------------------------------------------------- /merkletree/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/endian.h -------------------------------------------------------------------------------- /merkletree/merkle-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/merkle-tree.cpp -------------------------------------------------------------------------------- /merkletree/merkle-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/merkle-tree.hpp -------------------------------------------------------------------------------- /merkletree/mtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/mtp.cpp -------------------------------------------------------------------------------- /merkletree/mtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/mtp.h -------------------------------------------------------------------------------- /merkletree/prevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/prevector.h -------------------------------------------------------------------------------- /merkletree/zeroafterfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/merkletree/zeroafterfree.h -------------------------------------------------------------------------------- /miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/miner.h -------------------------------------------------------------------------------- /myriadgroestl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/myriadgroestl.cpp -------------------------------------------------------------------------------- /neoscrypt/cuda_neoscrypt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/neoscrypt/cuda_neoscrypt.cu -------------------------------------------------------------------------------- /neoscrypt/cuda_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/neoscrypt/cuda_vectors.h -------------------------------------------------------------------------------- /neoscrypt/neoscrypt-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/neoscrypt/neoscrypt-cpu.c -------------------------------------------------------------------------------- /neoscrypt/neoscrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/neoscrypt/neoscrypt.cpp -------------------------------------------------------------------------------- /neoscrypt/neoscrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/neoscrypt/neoscrypt.h -------------------------------------------------------------------------------- /nvapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/nvapi.cpp -------------------------------------------------------------------------------- /nvml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/nvml.cpp -------------------------------------------------------------------------------- /nvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/nvml.h -------------------------------------------------------------------------------- /nvreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/nvreport.xml -------------------------------------------------------------------------------- /pentablake.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/pentablake.cu -------------------------------------------------------------------------------- /pools.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/pools.conf -------------------------------------------------------------------------------- /pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/pools.cpp -------------------------------------------------------------------------------- /quark/cuda_bmw512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_bmw512.cu -------------------------------------------------------------------------------- /quark/cuda_bmw512_sm3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_bmw512_sm3.cuh -------------------------------------------------------------------------------- /quark/cuda_jh512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_jh512.cu -------------------------------------------------------------------------------- /quark/cuda_quark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark.h -------------------------------------------------------------------------------- /quark/cuda_quark_blake512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark_blake512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_blake512_sp.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark_blake512_sp.cuh -------------------------------------------------------------------------------- /quark/cuda_quark_compactionTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark_compactionTest.cu -------------------------------------------------------------------------------- /quark/cuda_quark_groestl512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark_groestl512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_groestl512_sm20.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark_groestl512_sm20.cu -------------------------------------------------------------------------------- /quark/cuda_quark_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_quark_keccak512.cu -------------------------------------------------------------------------------- /quark/cuda_skein512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_skein512.cu -------------------------------------------------------------------------------- /quark/cuda_skein512_sp.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/cuda_skein512_sp.cuh -------------------------------------------------------------------------------- /quark/groestl_functions_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/groestl_functions_quad.h -------------------------------------------------------------------------------- /quark/groestl_transf_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/groestl_transf_quad.h -------------------------------------------------------------------------------- /quark/nist5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/nist5.cu -------------------------------------------------------------------------------- /quark/quarkcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/quark/quarkcoin.cu -------------------------------------------------------------------------------- /qubit/deep.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/qubit/deep.cu -------------------------------------------------------------------------------- /qubit/luffa.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/qubit/luffa.cu -------------------------------------------------------------------------------- /qubit/qubit.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/qubit/qubit.cu -------------------------------------------------------------------------------- /qubit/qubit_luffa512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/qubit/qubit_luffa512.cu -------------------------------------------------------------------------------- /res/ccminer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/res/ccminer.ico -------------------------------------------------------------------------------- /res/ccminer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/res/ccminer.rc -------------------------------------------------------------------------------- /res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/res/resource.h -------------------------------------------------------------------------------- /result.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/result.pdf -------------------------------------------------------------------------------- /scrypt-jane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt-jane.cpp -------------------------------------------------------------------------------- /scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt.cpp -------------------------------------------------------------------------------- /scrypt/blake.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/blake.cu -------------------------------------------------------------------------------- /scrypt/code/scrypt-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-conf.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-jane-chacha.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-mix_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-jane-mix_chacha.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-portable-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-jane-portable-x86.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-jane-portable.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix-basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-jane-romix-basic.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/code/scrypt-jane-romix-template.h -------------------------------------------------------------------------------- /scrypt/fermi_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/fermi_kernel.cu -------------------------------------------------------------------------------- /scrypt/fermi_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/fermi_kernel.h -------------------------------------------------------------------------------- /scrypt/keccak.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/keccak.cu -------------------------------------------------------------------------------- /scrypt/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/keccak.h -------------------------------------------------------------------------------- /scrypt/kepler_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/kepler_kernel.cu -------------------------------------------------------------------------------- /scrypt/kepler_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/kepler_kernel.h -------------------------------------------------------------------------------- /scrypt/nv_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/nv_kernel.cu -------------------------------------------------------------------------------- /scrypt/nv_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/nv_kernel.h -------------------------------------------------------------------------------- /scrypt/nv_kernel2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/nv_kernel2.cu -------------------------------------------------------------------------------- /scrypt/nv_kernel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/nv_kernel2.h -------------------------------------------------------------------------------- /scrypt/salsa_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/salsa_kernel.cu -------------------------------------------------------------------------------- /scrypt/salsa_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/salsa_kernel.h -------------------------------------------------------------------------------- /scrypt/scrypt-jane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/scrypt-jane.h -------------------------------------------------------------------------------- /scrypt/sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/sha256.cu -------------------------------------------------------------------------------- /scrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/sha256.h -------------------------------------------------------------------------------- /scrypt/test_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/test_kernel.cu -------------------------------------------------------------------------------- /scrypt/test_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/test_kernel.h -------------------------------------------------------------------------------- /scrypt/titan_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/titan_kernel.cu -------------------------------------------------------------------------------- /scrypt/titan_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/scrypt/titan_kernel.h -------------------------------------------------------------------------------- /serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/serialize.hpp -------------------------------------------------------------------------------- /sia/sia-rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sia/sia-rpc.cpp -------------------------------------------------------------------------------- /sia/sia-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sia/sia-rpc.h -------------------------------------------------------------------------------- /sia/sia.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sia/sia.cu -------------------------------------------------------------------------------- /skein.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/skein.cu -------------------------------------------------------------------------------- /skein2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/skein2.cpp -------------------------------------------------------------------------------- /sph/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/aes_helper.c -------------------------------------------------------------------------------- /sph/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/blake.c -------------------------------------------------------------------------------- /sph/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/blake2b.c -------------------------------------------------------------------------------- /sph/blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/blake2b.h -------------------------------------------------------------------------------- /sph/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/blake2s.c -------------------------------------------------------------------------------- /sph/blake2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/blake2s.h -------------------------------------------------------------------------------- /sph/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/bmw.c -------------------------------------------------------------------------------- /sph/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/cubehash.c -------------------------------------------------------------------------------- /sph/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/echo.c -------------------------------------------------------------------------------- /sph/fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/fugue.c -------------------------------------------------------------------------------- /sph/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/groestl.c -------------------------------------------------------------------------------- /sph/hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/hamsi.c -------------------------------------------------------------------------------- /sph/hamsi_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/hamsi_helper.c -------------------------------------------------------------------------------- /sph/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/haval.c -------------------------------------------------------------------------------- /sph/haval_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/haval_helper.c -------------------------------------------------------------------------------- /sph/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/jh.c -------------------------------------------------------------------------------- /sph/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/keccak.c -------------------------------------------------------------------------------- /sph/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/luffa.c -------------------------------------------------------------------------------- /sph/md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/md_helper.c -------------------------------------------------------------------------------- /sph/ripemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/ripemd.c -------------------------------------------------------------------------------- /sph/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sha2.c -------------------------------------------------------------------------------- /sph/sha2big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sha2big.c -------------------------------------------------------------------------------- /sph/shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/shabal.c -------------------------------------------------------------------------------- /sph/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/shavite.c -------------------------------------------------------------------------------- /sph/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/simd.c -------------------------------------------------------------------------------- /sph/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/skein.c -------------------------------------------------------------------------------- /sph/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_blake.h -------------------------------------------------------------------------------- /sph/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_bmw.h -------------------------------------------------------------------------------- /sph/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_cubehash.h -------------------------------------------------------------------------------- /sph/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_echo.h -------------------------------------------------------------------------------- /sph/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_fugue.h -------------------------------------------------------------------------------- /sph/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_groestl.h -------------------------------------------------------------------------------- /sph/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_hamsi.h -------------------------------------------------------------------------------- /sph/sph_haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_haval.h -------------------------------------------------------------------------------- /sph/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_jh.h -------------------------------------------------------------------------------- /sph/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_keccak.h -------------------------------------------------------------------------------- /sph/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_luffa.h -------------------------------------------------------------------------------- /sph/sph_ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_ripemd.h -------------------------------------------------------------------------------- /sph/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_sha2.c -------------------------------------------------------------------------------- /sph/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_sha2.h -------------------------------------------------------------------------------- /sph/sph_shabal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_shabal.h -------------------------------------------------------------------------------- /sph/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_shavite.h -------------------------------------------------------------------------------- /sph/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_simd.h -------------------------------------------------------------------------------- /sph/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_skein.h -------------------------------------------------------------------------------- /sph/sph_streebog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_streebog.h -------------------------------------------------------------------------------- /sph/sph_tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_tiger.h -------------------------------------------------------------------------------- /sph/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_types.h -------------------------------------------------------------------------------- /sph/sph_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/sph_whirlpool.h -------------------------------------------------------------------------------- /sph/streebog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/streebog.c -------------------------------------------------------------------------------- /sph/tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/tiger.c -------------------------------------------------------------------------------- /sph/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sph/whirlpool.c -------------------------------------------------------------------------------- /stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/stats.cpp -------------------------------------------------------------------------------- /sysinfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/sysinfos.cpp -------------------------------------------------------------------------------- /test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/test.csv -------------------------------------------------------------------------------- /test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/test2.txt -------------------------------------------------------------------------------- /uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/uint256.h -------------------------------------------------------------------------------- /uint256.h_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/uint256.h_old -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/util.c -------------------------------------------------------------------------------- /util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/util.cpp -------------------------------------------------------------------------------- /x11/c11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/c11.cu -------------------------------------------------------------------------------- /x11/cuda_streebog.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_streebog.cu -------------------------------------------------------------------------------- /x11/cuda_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11.h -------------------------------------------------------------------------------- /x11/cuda_x11_aes.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_aes.cuh -------------------------------------------------------------------------------- /x11/cuda_x11_cubehash512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_cubehash512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_echo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_echo.cu -------------------------------------------------------------------------------- /x11/cuda_x11_luffa512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_luffa512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_luffa512_Cubehash.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_luffa512_Cubehash.cu -------------------------------------------------------------------------------- /x11/cuda_x11_shavite512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_shavite512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_simd512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_simd512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_simd512_func.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_simd512_func.cuh -------------------------------------------------------------------------------- /x11/cuda_x11_simd512_sm2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/cuda_x11_simd512_sm2.cuh -------------------------------------------------------------------------------- /x11/fresh.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/fresh.cu -------------------------------------------------------------------------------- /x11/s3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/s3.cu -------------------------------------------------------------------------------- /x11/sib.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/sib.cu -------------------------------------------------------------------------------- /x11/veltor.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/veltor.cu -------------------------------------------------------------------------------- /x11/x11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/x11.cu -------------------------------------------------------------------------------- /x11/x11evo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x11/x11evo.cu -------------------------------------------------------------------------------- /x13/cuda_x13_fugue512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x13/cuda_x13_fugue512.cu -------------------------------------------------------------------------------- /x13/cuda_x13_hamsi512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x13/cuda_x13_hamsi512.cu -------------------------------------------------------------------------------- /x13/x13.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x13/x13.cu -------------------------------------------------------------------------------- /x15/cuda_whirlpoolx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/cuda_whirlpoolx.cu -------------------------------------------------------------------------------- /x15/cuda_x14_shabal512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/cuda_x14_shabal512.cu -------------------------------------------------------------------------------- /x15/cuda_x15_whirlpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/cuda_x15_whirlpool.cu -------------------------------------------------------------------------------- /x15/whirlpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/whirlpool.cu -------------------------------------------------------------------------------- /x15/whirlpoolx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/whirlpoolx.cu -------------------------------------------------------------------------------- /x15/x14.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/x14.cu -------------------------------------------------------------------------------- /x15/x15.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x15/x15.cu -------------------------------------------------------------------------------- /x17/cuda_x17_haval256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x17/cuda_x17_haval256.cu -------------------------------------------------------------------------------- /x17/cuda_x17_sha512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x17/cuda_x17_sha512.cu -------------------------------------------------------------------------------- /x17/x17.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/x17/x17.cu -------------------------------------------------------------------------------- /zr5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firoorg/ccminer/HEAD/zr5.cu --------------------------------------------------------------------------------