bitmessage-js/README.md

105 lines
3.0 KiB
Markdown
Raw Normal View History

2014-12-17 11:08:42 +00:00
# bitmessage [![Build Status](https://travis-ci.org/bitchan/bitmessage.svg?branch=master)](https://travis-ci.org/bitchan/bitmessage)
2014-12-11 17:57:42 +00:00
2014-12-28 17:08:41 +00:00
JavaScript Bitmessage library for both browserify and node. The goal of this project is to implement Bitmessage protocol v3 for both platforms at the maximum possible level (we still can't create TCP connections or listen for incoming connections in the Browser but the Proof of work and crypto is fully doable).
Public library API is currently in alpha stage, breaking changes are very likely to happen.
2014-12-28 16:59:57 +00:00
2014-12-30 18:30:12 +00:00
API documentation is available [here](https://bitchan.github.io/bitmessage/docs/).
2014-12-30 17:00:28 +00:00
2014-12-28 16:59:57 +00:00
## References
* [Project wiki](https://bitmessage.org/wiki/Main_Page)
* [Protocol specification](https://bitmessage.org/wiki/Protocol_specification)
* [Whitepaper](https://bitmessage.org/bitmessage.pdf)
## Implementation details
With the help of browserify `bitmessage` provides different implementations for Browser and Node.js with the same API. Because WebCryptoAPI defines asynchronous promise-driven API, implementation for Node needs to use promises too.
* Use Node.js crypto module/library bindings where possible
* Use WebCryptoAPI where possible
* Promise-driven API
## Feature matrix (both Browser and Node)
- [ ] crypto
- [x] SHA-512
- [x] SHA-256
- [x] RIPEMD-160
- [x] PRNG
- [x] ECC keys manipulation
- [x] ECDSA
- [ ] ECDH
- [ ] ECIES
- [ ] AES-256-CBC
- [ ] HMAC-SHA-256
- [ ] Common structures
- [ ] message
2014-12-28 16:59:57 +00:00
- [x] var_int
2015-01-02 14:27:03 +00:00
- [x] var_str
- [x] var_int_list
2014-12-28 16:59:57 +00:00
- [ ] net_addr
- [ ] inv_vect
- [ ] encrypted
- [ ] unencrypted
- [ ] encoding
2014-12-28 16:59:57 +00:00
- [ ] bitfield
- [ ] Message types
- [ ] version
- [ ] verack
- [ ] addr
- [ ] inv
- [ ] getdata
2015-01-02 21:45:56 +00:00
- [ ] error
- [ ] object
- [ ] Object types
- [ ] getpubkey
- [ ] pubkey
- [ ] msg
- [ ] broadcast
- [x] WIF
- [ ] POW
- [ ] High-level classes
2014-12-28 16:59:57 +00:00
- [ ] Address
- [x] encode
- [x] decode
- [x] getRipe
2014-12-29 22:16:51 +00:00
- [x] fromRandom
- [ ] fromPassphrase
2014-12-28 16:59:57 +00:00
- [ ] Message
- [ ] encrypt
- [ ] decrypt
2014-12-28 16:59:57 +00:00
- [ ] Parse PyBitmessage configs
- [ ] decode keys.dat
- [ ] decode knownnodes.dat
- [ ] decode messages.dat
2014-12-28 17:08:41 +00:00
## Feature matrix (Node.js only)
2014-12-28 16:59:57 +00:00
- [ ] Network
- [ ] Bootstrap
- [ ] Connect to the network
- [ ] Accept connections
2014-12-11 17:57:42 +00:00
2014-12-13 18:59:48 +00:00
## Usage
```js
2014-12-29 22:16:51 +00:00
// Generating a new Bitmessage identity.
2014-12-28 16:59:57 +00:00
var Address = require("bitmessage").Address;
2014-12-29 22:16:51 +00:00
Address.fromRandom().then(function(addr) {
addr.encode().then(function(str) {
2014-12-28 16:59:57 +00:00
console.log("New random Bitmessage address:", str);
});
});
2014-12-13 18:59:48 +00:00
```
2014-12-11 17:57:42 +00:00
## License
bitmessage - JavaScript Bitmessage library
Written in 2014 by Kagami Hiiragi <kagami@genshiken.org>
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.