Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keybase/warpwallet
A brain wallet generator that uses scrypt.
https://github.com/keybase/warpwallet
Last synced: 5 days ago
JSON representation
A brain wallet generator that uses scrypt.
- Host: GitHub
- URL: https://github.com/keybase/warpwallet
- Owner: keybase
- License: bsd-3-clause
- Created: 2013-11-15T19:57:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-01-30T14:03:51.000Z (almost 5 years ago)
- Last Synced: 2024-08-03T23:25:19.613Z (3 months ago)
- Language: HTML
- Size: 16.3 MB
- Stars: 187
- Watchers: 23
- Forks: 61
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# warpwallet
A brain wallet generator that uses scrypt.
## Install
There's no npm module for WarpWallet since it's intended as a browser-only service. However,
it does use npm to manage its dependencies## Build
```sh
$ npm install -g iced-coffee-script
$ npm install -d
$ icake build
```## Test
```sh
$ make test
```## Regeneration of Test Vectors (which otherwise are fixed)
To generate our reference test vectors, we use the reference Scrypt implementation (in C), a
Python PBKDF2, and a Python library to turn a seed into a keypair. To see how this works, try:```sh
$ cd test/gen && make build && make spec
```## Why a Makefile and a Cakefile?
Internal disagreement as to which is better.