Skip to content
This repository was archived by the owner on Feb 25, 2021. It is now read-only.

Commit 3b0fcbd

Browse files
authored
Merge pull request BlockstreamResearch#21 from TheBlueMatt/master
Add fuzztarget feature that replaces crypto with memcpys
2 parents e08ddbc + e5e36c4 commit 3b0fcbd

File tree

3 files changed

+383
-7
lines changed

3 files changed

+383
-7
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "secp256k1"
4-
version = "0.8.4"
4+
version = "0.8.5"
55
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
66
"Andrew Poelstra <[email protected]>" ]
77
license = "CC0-1.0"
@@ -23,6 +23,7 @@ path = "src/lib.rs"
2323
[features]
2424
unstable = []
2525
default = []
26+
fuzztarget = []
2627

2728
[dev-dependencies]
2829
serde = "1.0"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[![Build Status](https://travis-ci.org/apoelstra/rust-secp256k1.png?branch=master)](https://travis-ci.org/apoelstra/rust-secp256k1)
1+
[![Build Status](https://travis-ci.org/rust-bitcoin/rust-secp256k1.png?branch=master)](https://travis-ci.org/rust-bitcoin/rust-secp256k1)
22

33
### rust-secp256k1
44

5-
`rust-secp256k1` is a wrapper around ![libsecp256k1](https://github.com/bitcoin/secp256k1),
5+
`rust-secp256k1` is a wrapper around ![libsecp256k1](https://github.com/bitcoin-core/secp256k1),
66
a C library by Peter Wuille for producing ECDSA signatures using the SECG curve
77
`secp256k1`. This library
88
* exposes type-safe Rust bindings for all `libsecp256k1` functions

0 commit comments

Comments
 (0)