Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0x4139/secp256k1
Golang wrapper over bitcoin core C secp256k1
https://github.com/0x4139/secp256k1
bitcoin go go-binding secp256k1
Last synced: 17 days ago
JSON representation
Golang wrapper over bitcoin core C secp256k1
- Host: GitHub
- URL: https://github.com/0x4139/secp256k1
- Owner: 0x4139
- Created: 2018-04-17T14:29:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-04-18T09:28:01.000Z (over 6 years ago)
- Last Synced: 2024-12-16T20:35:42.976Z (26 days ago)
- Topics: bitcoin, go, go-binding, secp256k1
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
- awesome-golang-repositories - secp256k1
README
Go bindings for bitcoin secp256k1
======
[![Documentation Status](https://readthedocs.org/projects/ansicolortags/badge/?version=latest)](http://ansicolortags.readthedocs.io/?badge=latest) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)### Important: Be sure that you use golang < 1.9.4 due to the fact of this [Issue](https://github.com/golang/go/issues/23739)
### How to install
```
cd $GOPATH/src/github.com/0x4139/secp256k1
git submodule update
cd c-secp256k1
make distclean && ./autogen.sh && ./configure && make
cd ..
go clean && go install
```### Docs
Due to the fact that it implements a part of the functions of the bitcoin secp256k1 you can look directly in to the
[Header File](https://github.com/bitcoin-core/secp256k1/blob/3087bc4d75ec17287e71a36bda5df52a9ab8d854/include/secp256k1.h)### License
````
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004Copyright (C) 2018
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION0. You just DO WHAT THE FUCK YOU WANT TO.
````