Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sammyne/bip38
An Implementation of BIP38
https://github.com/sammyne/bip38
bip bitcoin-wallet encryption
Last synced: about 1 month 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T08:17:26.000Z (about 6 years ago)
- Last Synced: 2023-06-27T19:08:04.839Z (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
[![CircleCI](https://circleci.com/gh/sammy00/bip38.svg?style=svg)](https://circleci.com/gh/sammy00/bip38)
[![codecov](https://codecov.io/gh/sammy00/bip38/branch/master/graph/badge.svg)](https://codecov.io/gh/sammy00/bip38)
[![Go Report Card](https://goreportcard.com/badge/github.com/sammy00/bip38)](https://goreportcard.com/report/github.com/sammy00/bip38)
[![LICENSE](https://img.shields.io/badge/license-ISC-blue.svg)](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)