bitmessage-js/README.md

94 lines
2.6 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
2015-01-03 16:49:20 +00:00
* [Bitmessage wiki](https://bitmessage.org/wiki/Main_Page)
2014-12-28 16:59:57 +00:00
* [Protocol specification](https://bitmessage.org/wiki/Protocol_specification)
* [Whitepaper](https://bitmessage.org/bitmessage.pdf)
## 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
2015-01-04 20:59:14 +00:00
- [x] 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
2015-01-05 23:32:10 +00:00
- [x] net_addr
- [ ] encrypted
2015-01-04 20:59:14 +00:00
- [x] message encodings
2015-01-04 23:40:52 +00:00
- [x] service features
- [x] pubkey features
- [ ] 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
2015-01-09 21:36:42 +00:00
- [x] 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
2015-01-05 23:32:10 +00:00
- [ ] UserAgent
2014-12-28 16:59:57 +00:00
- [ ] Message
- [ ] encrypt
- [ ] decrypt
2014-12-28 16:59:57 +00:00
- [ ] Parse PyBitmessage configs
2015-01-02 21:56:54 +00:00
- [ ] keys.dat
- [ ] knownnodes.dat
- [ ] messages.dat
2014-12-28 16:59:57 +00:00
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
// Generate a new random Bitmessage identity.
2014-12-28 16:59:57 +00:00
var Address = require("bitmessage").Address;
var addr = Address.fromRandom();
console.log("New random Bitmessage address:", addr.encode());
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/>.