-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #653: Update vendored lib secp256k1 to v0.4.0
80b2a8d Update vendored libsecp to v0.4.0 (Davidson Souza) d2285c9 ci: Remove MIPS* from CI (Davidson Souza) 0d58f50 ci: generalize grp in "illegal callback" test (Andrew Poelstra) acf9ac1 delete `test_manual_create_destroy` test (Andrew Poelstra) 04ce508 lib: fix bad unit test (Andrew Poelstra) e4cca90 gitignore: remove things that shouldn't be there (Andrew Poelstra) Pull request description: Replaces #645 and #652. Precedes #627. I'm basically using #652 but resolving the linking problems, My local CI is erring on windows cross-test, but I can compile without issue with `cargo build --target x86_64-pc-windows-gnu`. Some MIPS jobs failed before even installing cross, I think those aren't really related to this PR. Any ideas on what can be happening? ACKs for top commit: apoelstra: ACK 80b2a8d Tree-SHA512: 62c2e04348110e3995111fa666f10dcc403b963770d047361f9209cf45b45db8744a7eb6d9ee3278d18007412dab5131ac3e1dd3e3d704963c6a6f232d57199a
- Loading branch information
Showing
159 changed files
with
21,825 additions
and
8,073 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
target/ | ||
Cargo.lock | ||
|
||
#IntelliJ project files | ||
.idea | ||
*.iml | ||
|
||
CMakeLists.txt | ||
cmake-build-debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "secp256k1-sys" | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
authors = [ "Dawid Ciężarkiewicz <[email protected]>", | ||
"Andrew Poelstra <[email protected]>", | ||
"Steven Roose <[email protected]>" ] | ||
|
@@ -12,7 +12,7 @@ description = "FFI for Pieter Wuille's `libsecp256k1` library." | |
keywords = [ "secp256k1", "libsecp256k1", "ffi" ] | ||
readme = "README.md" | ||
build = "build.rs" | ||
links = "rustsecp256k1_v0_8_1" | ||
links = "rustsecp256k1_v0_9_0" | ||
edition = "2018" | ||
|
||
[package.metadata.docs.rs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
10c10,12 | ||
< | ||
--- | ||
> extern int secp256k1_ecdsa_signature_parse_compact( | ||
> const secp256k1_context *ctx, | ||
> secp256k1_ecdsa_signature *sig, const unsigned char *input64); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# This file was automatically created by vendor-libsecp.sh | ||
21ffe4b22a9683cf24ae0763359e401d1284cc7a | ||
199d27cea32203b224b208627533c2e813cd3b21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,36 @@ | ||
226,228d225 | ||
< SECP256K1_API secp256k1_context* secp256k1_context_create( | ||
236d235 | ||
< SECP256K1_API const secp256k1_context *secp256k1_context_static; | ||
239,240d237 | ||
< SECP256K1_API const secp256k1_context *secp256k1_context_no_precomp | ||
< SECP256K1_DEPRECATED("Use secp256k1_context_static instead"); | ||
286,289d282 | ||
< SECP256K1_API secp256k1_context *secp256k1_context_create( | ||
< unsigned int flags | ||
< ) SECP256K1_WARN_UNUSED_RESULT; | ||
231,233d227 | ||
< SECP256K1_API secp256k1_context* secp256k1_context_clone( | ||
< const secp256k1_context* ctx | ||
< | ||
302,305d294 | ||
< SECP256K1_API secp256k1_context *secp256k1_context_clone( | ||
< const secp256k1_context *ctx | ||
< ) SECP256K1_ARG_NONNULL(1) SECP256K1_WARN_UNUSED_RESULT; | ||
248,250d241 | ||
< | ||
320,323d308 | ||
< SECP256K1_API void secp256k1_context_destroy( | ||
< secp256k1_context* ctx | ||
< secp256k1_context *ctx | ||
< ) SECP256K1_ARG_NONNULL(1); | ||
327,330d317 | ||
< SECP256K1_API SECP256K1_WARN_UNUSED_RESULT secp256k1_scratch_space* secp256k1_scratch_space_create( | ||
< const secp256k1_context* ctx, | ||
< | ||
402,406d386 | ||
< SECP256K1_API SECP256K1_WARN_UNUSED_RESULT secp256k1_scratch_space *secp256k1_scratch_space_create( | ||
< const secp256k1_context *ctx, | ||
< size_t size | ||
< ) SECP256K1_ARG_NONNULL(1); | ||
338,341d324 | ||
< | ||
413,417d392 | ||
< SECP256K1_API void secp256k1_scratch_space_destroy( | ||
< const secp256k1_context* ctx, | ||
< secp256k1_scratch_space* scratch | ||
< const secp256k1_context *ctx, | ||
< secp256k1_scratch_space *scratch | ||
< ) SECP256K1_ARG_NONNULL(1); | ||
< | ||
636d610 | ||
< SECP256K1_API const secp256k1_nonce_function secp256k1_nonce_function_rfc6979; | ||
639d612 | ||
< SECP256K1_API const secp256k1_nonce_function secp256k1_nonce_function_default; |
Oops, something went wrong.