The bitcoinj library is a Java implementation of the Bitcoin protocol, which allows it to maintain a wallet and send/receive transactions without needing a local copy of Bitcoin Core. It comes with full documentation and some example apps showing how to use it.
2021-09-15 10:16:49 21.36MB bitcoin blockchain java bitcoinj
1
送你一把打开区块链世界大门的钥匙——《精通比特币第二版》 序言; 什么是比特币,比特币原理,比特币核心。
2021-09-12 11:06:37 17.96MB 比特币 比特币入门 比特币文档 Bitcoin
1
阅读所有关于我如何写这个和理解BIP39 。 除了生成种子外,英语,法语,西班牙语和日语,但由于WordList是一个界面,您可以提供自己的界面。 安装 使用以下两个存储库之一: repositories { jcenter() } 要么: repositories { maven { url 'https://dl.bintray.com/novacrypto/BIP/' } } 添加依赖项: dependencies { compile 'io.github.novacrypto:BIP39:2019.01.27' } 用法 生成助记符 使用StringBuilder : StringBuilder sb = new StringBuilder(); byte[] entropy = new byte[Words.TWELVE.byteLength()]; new SecureRandom().nextBytes(entropy); new MnemonicGenerator(English.INSTANCE) .c
2021-09-09 15:45:23 184KB bitcoin ethereum litecoin mnemonic
1
BIP实用程序库 介绍 该软件包包含一些BIP(比特币改进提案)规范的实现,从而可以: 根据随机熵生成助记符字符串 从助记符字符串生成安全种子 使用种子生成钱包的主密钥并派生子密钥,包括地址编码 实施的BIP规范如下: 用于助记符和种子生成 用于主密钥生成(从安全种子)和子密钥派生 , 和用于确定性钱包的层次结构,基于BIP-0032规范 除此之外,该软件包还允许: 解析BIP-0032派生路径 为所有支持的硬币生成地址 编码/解码 编码/解码 编码/解码 编码/解码比特币现金bech32 编码/解码Atom bech32 该软件包当前支持以下硬币(我不时尝试添加新硬币):
2021-09-09 14:59:02 159KB python bitcoin ethereum ripple
1
某论坛内部软件,无私共享! 解压密码btc321
2021-08-29 01:18:12 632KB 比特币 比特币价格 bitcoin 行情监控
1
Manning.Grokking.Bitcoin, Manning公司新出的Grokking丛书之三,继算法,深度学习之后的第三本,简单,通俗易懂。 About the Book Grokking Bitcoin explains why Bitcoin's supporters trust it so deeply, and why you can too. This approachable book will introduce you to Bitcoin's groundbreaking technology, which is the key to this world-changing system. This illustrated, easy-to-read guide prepares you for a new way of thinking with easy-to-follow diagrams and exercises. You'll discover how Bitcoin mining works, how to accept Bitcoin, how to participate in the Bitcoin network, and how to set up a digital wallet. What's inside Bitcoin transactions The blockchain Bitcoin mining Bitcoin wallets
2021-08-26 16:05:12 22.49MB bitcoi mannin grokki
1
secp256k1-js 纯JS实现secp256k1签名,验证,恢复ECDSA。 该代码在浏览器和NodeJS中均按原样工作,而无需捆绑程序。 Node.js的用法 npm install @enumatech/secp256k1-js 例子 const crypto = require ( 'crypto' ) const assert = require ( 'assert' ) const Secp256k1 = require ( '@enumatech/secp256k1-js' ) // Generating private key const privateKeyBuf = crypto . randomBytes ( 32 ) const privateKey = Secp256k1 . uint256 ( privateKeyBuf , 16 ) // Genera
2021-08-22 18:20:52 15KB nodejs javascript bitcoin ecc
1
eciesjs TypeScript中secp256k1的椭圆曲线集成加密方案。 这是JavaScript /打字稿版本的带有内置类样secp256k1 ,你可以去那里详细的文档和学习引擎盖下的机制。 如果希望WASM版本在浏览器中运行,请检查 。 安装 npm install eciesjs 快速开始 > import { encrypt , decrypt , PrivateKey } from 'eciesjs' > const k1 = new PrivateKey ( ) > const data = Buffer . from ( 'this is a test' ) > decrypt ( k1 . toHex ( ) , encrypt ( k1 . publicKey . toHex ( ) , data ) ) . toString ( ) 'this is a test' API encrypt(receiverRawPub: string | Buffer, msg: Buffer): Buffer 参数: receiverRawPub-接收者的se
2021-08-22 13:35:04 42KB javascript cryptography typescript bitcoin
1
比特币节点块浏览器 简单而纯粹的块浏览器,您可以在完整节点上运行。 该区块浏览器修补到您的比特币核心节点的JSON-RPC接口中,以检索交易和区块信息。 它作为一个简单的Web应用程序运行,您可以在任何J2EE Web容器(Jetty,Tomcat等)上运行,将其指向您的节点,您就可以使用了。 (注意:它还支持在Blockr API的基础上运行,以后可能还会支持其他功能) 这个区块浏览器只对区块链保持纯正,这意味着它不依赖于区块链以外的任何数据源。 比特币金额不会以法定货币显示,不存在交易或块接收时间。 产品特点 阻止查看器 显示所有可用的块信息。 包括一个交互式十六进制查看器,该查看器显示标头中每个最后一个字节的含义以及coinbase事务。 交易查看器 显示所有可用的交易信息。 像在块查看器中一样,通过交互式十六进制查看器显示原始事务中每个单个字节的含义。 通用搜寻 输入任何内容,交易ID,区块高度,区块哈希,原始区块,原始交易,此浏览器将弄清楚您的意思并显示适当的内容。 采矿模拟器 构造一个原始块,如果有效,它将被整个网络接受。 可视化挖掘时发生的情况,增加随机数/扩展度,
2021-08-20 16:25:40 288KB java node block bitcoin
1
爆笑 python中secp256k1的椭圆曲线集成加密方案。 其他语言版本: 您也可以查看FastAPI Web后端演示。 安装 在Python pip install eciespy使用pip install eciespy 。 快速开始 >> > from ecies . utils import generate_eth_key , generate_key >> > from ecies import encrypt , decrypt >> > eth_k = generate_eth_key () >> > sk_hex = eth_k . to_hex () # hex string >> > pk_hex = eth_k . public_key . to_hex () # hex string >> > data = b'this is a test' >> > decrypt ( sk_hex , encrypt ( pk_hex , data )) b'this is a test' >> > secp_k = generate_key () >> >
2021-08-16 18:08:42 31KB cryptography bitcoin ethereum python3
1