This time I will bring you Node.Js to generate a Bitcoin address (with code). What are the precautions for generating a Bitcoin address with Node.Js? Here is a practical case, let’s take a look.
Use Node.js, IDE uses sublime 3.
var randomBytes = require('randombytes') var BigInteger = require('bigi') var ecurve = require('ecurve') var crypto = require('crypto') var cs = require('coinstring') var secp256k1 = ecurve.getCurveByName('secp256k1') var randombytes = randomBytes(32).toString('hex') var privateKey = new Buffer(randombytes, 'hex') console.log("私钥:" + privateKey.toString('hex')) var ecparams = ecurve.getCurveByName('secp256k1') var curvePt = ecparams.G.multiply(BigInteger.fromBuffer(privateKey)) var x = curvePt.affineX.toBuffer(32) var y = curvePt.affineY.toBuffer(32) var publicKey = Buffer.concat([new Buffer([0x04]), x, y]) console.log("标准地址:" + publicKey.toString('hex')) //compressed publicKey = curvePt.getEncoded(true) //true forces compressed public key console.log("compressed:" + publicKey.toString('hex')) var sha = crypto.createHash('sha256').update(publicKey).digest() var pubkeyHash = crypto.createHash('rmd160').update(sha).digest() // pubkeyHash of compressed public key console.log("pubkeyHash:" + pubkeyHash.toString('hex')) // address of compressed public key console.log("压缩地址:" + cs.encode(pubkeyHash, 0x0)) //<p style="text-align: left;"><strong>Generate Bitcoin address</strong></p><p style="text-align: left;">1. Generate a random private key. The private key is a 32-byte number. For example: </p><p style="text-align: left;">8F72F6B29E6E225A36B68DFE333C7CE5E55D83249D3D2CD6332671FA445C4DD3</p><p style="text-align: left;">2. Elliptic curve calculation public key After generating the private key, we use the elliptic curve encryption algorithm (ECDSA-secp256k1) to calculate the uncompressed public key corresponding to the private key. The generated public key is 65 bytes in total. First The first byte is 0x04, the last 32 bytes are the X coordinate, and the last 32 bytes are the Y coordinate: Public key P. DB985072968C72B036ED97BA2EF2DECE2ABCA5BE14792</p><blockquote style="text-align: left;"><p style="text-align: left;">Public key: </p></blockquote><p style="text-align: left;">0459DEE66AB619C4A9E215D070052D1AE3A2075E5F58C67516B2E4884A88C79BE9A5FA8CCD255FB0A7A75DB985072968C72B036ED97BA2EF2DECE2ABCA5BE14 792</p><blockquote style="text-align: left;"><p style="text-align: left;">3. Calculate the SHA-256 hash value of the public key</p></blockquote>##ae9c74647a8c2f50fd832e397e36dbad05d86db3fe3d959a7c8a07c1ddda40c6<p style="text-align: left;"></p><blockquote style="text-align: left;">4. Calculate the RIPEMD-160 hash value <p style="text-align: left;"></p> </blockquote>05f9d05358aab2a28f19910036e67a7295b14aac<p style="text-align: left;"></p><blockquote style="text-align: left;">5. Add the address version number (Bitcoin mainnet 0x00) <p style="text-align: left;"></p> </blockquote>0005f9d05358aab2a28f19910036e67a7295b14aac<p style="text-align: left;"></p><blockquote style="text-align: left;">In fact, this is almost the same, which is the compressed address finally generated by the above code. <p style="text-align: left;"></p>But in actual Bitcoin, verification must be added</blockquote><p style="text-align: left;">6. Calculate the SHA-256 hash value</p><p style="text-align: left;">##9f35b0c37977a302512c22f586dd8da4ae1d20399f2ad3f75df23fbc024b4b2d</p><p style="text-align: left;"> </p>7. Calculate the SHA-256 hash value again<blockquote style="text-align: left;"> <p style="text-align: left;"></p>4b4f9bc87616687957db64efaf4efb2c00d1d93d549a0b70b15812936046d0ac</blockquote><p style="text-align: left;"></p>8. Take the first 4 bytes of the previous step result (8-digit hexadecimal System) <blockquote style="text-align: left;"> <p style="text-align: left;"></p>4b4f9bc8</blockquote><p style="text-align: left;"></p>9. Add these 4 bytes to the end of the compression address generated in step 5<blockquote style="text-align: left;"> <p style="text-align: left;"></p>0005f9d05358aab2a28f19910036e67a7295b14aac4b4f9bc8</blockquote><p style="text-align: left;"></p>10. Use Base58 encoding <blockquote style="text-align: left;"><p style="text-align: left;">Base58 consists of 1-9 and English characters except i, l, 0, o. Base58 encode the result of the previous step and get: </p></blockquote><p style="text-align: left;">1YbeKoyePe8gxyAYh4E3Qyqb15Nnepmod</p><p style="text-align: left;"></p> I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other php Chinese websites related articles! <blockquote style="text-align: left;"><p style="text-align: left;">Recommended reading: </p></blockquote><p>String array deduplication practical case analysis</p><p></p><p><a href="http://www.php.cn/js-tutorial-401421.html" target="_blank">How express mock operates front and backend parallel development</a><br></p>
The above is the detailed content of Node.Js generates Bitcoin address (with code). For more information, please follow other related articles on the PHP Chinese website!

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

本篇文章带大家详解package.json和package-lock.json文件,希望对大家有所帮助!

如何用pkg打包nodejs可执行文件?下面本篇文章给大家介绍一下使用pkg将Node.js项目打包为可执行文件的方法,希望对大家有所帮助!

本篇文章给大家分享一个Nodejs web框架:Fastify,简单介绍一下Fastify支持的特性、Fastify支持的插件以及Fastify的使用方法,希望对大家有所帮助!

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

本篇文章给大家分享一个Node实战,介绍一下使用Node.js和adb怎么开发一个手机备份小工具,希望对大家有所帮助!

先介绍node.js的安装,再介绍使用node.js构建一个简单的web服务器,最后通过一个简单的示例,演示网页与服务器之间的数据交互的实现。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
