https://github.com/sammyne/bip38
An Implementation of BIP38
https://github.com/sammyne/bip38
bip bitcoin-wallet encryption
Last synced: 25 days ago
JSON representation
An Implementation of BIP38
- Host: GitHub
- URL: https://github.com/sammyne/bip38
- Owner: sammyne
- License: isc
- Created: 2018-10-24T01:28:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T08:17:26.000Z (over 7 years ago)
- Last Synced: 2025-01-24T09:28:30.921Z (over 1 year ago)
- Topics: bip, bitcoin-wallet, encryption
- Language: Go
- Size: 140 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bip38
[](https://circleci.com/gh/sammy00/bip38)
[](https://codecov.io/gh/sammy00/bip38)
[](https://goreportcard.com/report/github.com/sammy00/bip38)
[](LICENSE)
## Overview
This project implements the [bip-0038](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki) draft. Both the plain (as specified in the [nonec](nonec) package) and EC Multiply (as specified in the [ec](ec) package) version of encryption are implemented.
## Requirement
+ go-1.11 or above with module support
## Installation
```bash
go get github.com/sammy00/bip38
```
## References
+ [bitcoin/bips/bip-0038](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki)
+ [bitcoinjs/bip38](https://github.com/bitcoinjs/bip38)