区块投票 基于环签名的基于区块链的电子投票系统 演示视频: : 幻灯片: 话题 电子投票系统将对参与选举的所有人都有利。 例如,管理员可以改善选举任务的操作,而选民可以随时随地进行选举。 此外,理想的电子投票系统具有透明性,完整性(只有选民才有权投票,并且他们的选票被正确计数)和可验证性(选民可以检查他们的选票是否被正确计数),因此它比现有的投票更好。系统。 数字投票是使用电子设备(例如投票机或互联网浏览器)进行投票。 在投票站中使用机器进行投票时,有时将其称为电子投票,而在使用网络浏览器时,则称为电子投票。 在考虑实施数字投票系统时,数字投票的安全性始终是最大的问题。 面对如此重大的决策,毫无疑问,系统保护数据安全和防御潜在攻击的能力。 可以潜在地解决安全问题的一种方法是通过区块链技术。 区块链技术源自加密货币比特币的基础架构设计。 它是分布式数据库的一种形式,其中记录采用事务的形式,块是这些事务的集合。 通过使用区块链,可以设计出安全,强大的数字投票系统。 为了解决这个问题,我提出了一种使用环签名和区块链来确保电子投票功能的方法。 区块链技术的特点是去中心化,不可
2022-03-10 10:18:15 21.29MB bitcoin blockchain transaction vote
1
工具选取参考链接:http://blog.hubwiz.com/2019/12/03/blockchain-analytic-tools/  一、区块文件读取工具 1、bitcoin-blockchain-parser 测试选择:bitcoin-blockchain-parser:比特币blk.dat解析库 Github地址:https://github.com/alecalve/python-bitcoin-blockchain-parser 数据库选择:MongoDB 2、blockapi 区块链分析API 【最好在linux上操作,有点麻烦】 Github地址:https://githu
2022-02-28 13:47:17 442KB bitcoin blockchain c
1
BladeBTC (UBUNTU 18.04.2 LTS) This application is a telegram bot. The goal of this bot is to create a Bitcoin exchange platform. It allows to send and receive Bitcoin via telegram and a Bitcoin wallet on Blockchain. It guarantees a profit on investments. Users can invest, reinvest and withdraw their Bitcoin at any time via the telegram interface. Prerequisites This application is designed to be in
2022-02-16 05:58:05 15.94MB bot telegram bitcoin telegram-bot
1
bitbot bitcoin自用搬砖机器人
2022-01-24 23:14:07 52KB Python
1
所有虚拟货币的鼻祖,源代码值得详读. /** CCoinsView that brings transactions from a memorypool into view. It does not check for spendings by memory pool transactions. */ CCoinsViewMemPool::CCoinsViewMemPool(CCoinsView &baseIn, CTxMemPool &mempoolIn) : CCoinsViewBacked(baseIn), mempool(mempoolIn) { } bool CCoinsViewMemPool::GetCoins(const uint256 &txid, CCoins &coins) { if (base->GetCoins(txid, coins)) return true; if (mempool.exists(txid)) { const CTransaction &tx = mempool.lookup(txid); coins = CCoins(tx, MEMPOOL_HEIGHT); return true; } return false; }
2022-01-19 14:34:36 2.53MB 比特币 BitCoin 源代码 source
1
BTCPay服务器 接受比特币付款₿ BTCPay Server是一个免费的开源比特币支付处理器,它使您可以免费或无需中介地接受比特币。 | | | | “这是谎言,我对你的信任被打破,我会让你过时” :green_heart: ··· :briefcase: 目录 :artist_palette: 产品特点 直接点对点比特币付款 没有交易费(除外) 免费,中间人或KYC 非保管(对私钥的完全控制) 增强的隐私和安全性 自托管 SegWit支持 闪电网络支持(LND,c-lightning,Eclair和雷鸟) Tor支持 与朋友(多租户)共享您的实例 发票管理和付款请求 应用程序:销售点,众筹,捐赠按钮 具有和SegWit支持的全节点依赖钱
2022-01-18 14:52:09 7.62MB bitcoin payment-processor Bitcoin
1
1. 比特币的原理 2. 秘钥,地址,钱包 3. 区块链,挖矿 ,共识机制
2022-01-12 15:40:55 7.78MB bitcoin blockchain
1
关于戈币 Gocoin是使用Go语言(golang)编写的完整比特币解决方案。 该软件体系结构专注于节点的最大性能和钱包的冷存储安全性。 该钱包旨在脱机使用。 它是确定性的,并且已植入密码。 只要您记住密码,就不需要任何备份。 可以在没有客户端的情况下使用电子钱包,但可以使用提供的balio工具。 客户端(p2p节点)是独立于电子钱包的应用程序。 它将整个UTXO集保留在RAM中,从而提供对其所有记录的即时访问。 将BTC区块链同步到给定区块号所需的系统内存和时间: 上面的数据来自在具有32个vCPU和SSD永久存储的 VPS上运行的Gocoin 1.9.6。 有关更多性能结果,请访问网站。 要求 硬件 客户: 64位体系结构的OS和Go编译器。 文件系统支持大于4GB的文件。 至少15GB的系统RAM。 钱包: 您可以构建Go(交叉)编译器的任何平台(Raspberry Pi均可)。 出于安全原因,请确保使用加密的交换文件(如果有交换文件)。 如果决定将密码存储在文件中,请对磁盘进行加密(以防万一它被盗)。 操作系统 满足硬件要求后,Go编译器支持的任何目标操
2022-01-06 23:46:34 3.2MB golang node bitcoin wallet
1
Abstract. A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through a financial institution. Digital signatures provide part of the solution, but the main benefits are lost if a trusted third party is still required to prevent double-spending. We propose a solution to the double-spending problem using a peer-to-peer network. The network timestamps transactions by hashing them into an ongoing chain of hash-based proof-of-work, forming a record that cannot be changed without redoing the proof-of-work. The longest chain not only serves as proof of the sequence of events witnessed, but proof that it came from the largest pool of CPU power. As long as a majority of CPU power is controlled by nodes that are not cooperating to attack the network, they'll generate the longest chain and outpace attackers. The network itself requires minimal structure. Messages are broadcast on a best effort basis, and nodes can leave and rejoin the network at will, accepting the longest proof-of-work chain as proof of what happened while they were gone.
2021-12-27 10:29:05 174KB 中本聪 比特币 区块链 去中心
1
java源码示例,bitcoin解析助记词(或私钥): 1.BIP44,P2PKH,xpub 即1开头的地址。 2.BIP49,P2SH-P2WPKH,ypub 即3开头的地址。 3.BIP84,P2WPKH,zpub 即bc1开头的地址。 网上代码大都只能正常获取1开头和bc1开头的地址,但3开头的地址大部分参考算法都是错的。这个示例是跟tokenpocket和imtoken对比过都一致的。
2021-12-22 19:11:31 16KB bitcoin 助记词解析