Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
# warpwallet
# WarpWallet

A brain wallet generator that uses [scrypt](https://en.wikipedia.org/wiki/Scrypt) and
[pbkdf2](https://en.wikipedia.org/wiki/PBKDF2) for key stretching.

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
it does use npm to manage its dependencies.

## Build

```sh
$ npm install -g iced-coffee-script
$ sudo ln -s /usr/bin/nodejs /usr/bin/node
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove these changes? I'm assuming you've installed node as your user and it's in your path.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove this.

$ sudo npm install -g iced-coffee-script
$ npm install -d
$ icake build
```
Expand All @@ -27,6 +30,8 @@ To generate our reference test vectors, we use the reference Scrypt implementati
Python PBKDF2, and a Python library to turn a seed into a keypair. To see how this works, try:

```sh
$ pip install virtualenv
$ sudo /usr/bin/easy_install virtualenv
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this line needed?

Copy link
Author

@gallizoltan gallizoltan Jul 27, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is needed only at the first run.

$ cd test/gen && make build && make spec
```

Expand Down
21 changes: 21 additions & 0 deletions node_modules/base-x/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

79 changes: 79 additions & 0 deletions node_modules/base-x/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 92 additions & 0 deletions node_modules/base-x/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

106 changes: 106 additions & 0 deletions node_modules/base-x/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/bitcore-lib/.coveralls.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions node_modules/bitcore-lib/.jsdoc.conf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading