You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,15 @@ All notable changes to this project will be documented in this file.
8
8
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
9
9
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10
10
11
+
## [Unreleased]
12
+
13
+
#### Added
14
+
- New module `ellswift` implements ElligatorSwift encoding for public keys and x-only Diffie-Hellman key exchange for them.
15
+
ElligatorSwift permits representing secp256k1 public keys as 64-byte arrays which cannot be distinguished from uniformly random. See:
16
+
- Header file `include/secp256k1_ellswift.h` which defines the new API.
17
+
- Document `doc/ellswift.md` which explains the mathematical background of the scheme.
18
+
- The [paper](https://eprint.iacr.org/2022/759) on which the scheme is based.
19
+
11
20
## [0.3.2] - 2023-05-13
12
21
We strongly recommend updating to 0.3.2 if you use or plan to use GCC >=13 to compile libsecp256k1. When in doubt, check the GCC version using `gcc -v`.
# Note that "/opt" and "-opt" are equivalent for MSVC; we use "-opt" because "/opt" looks like a path.
123
123
if test x"$GCC" != x"yes" && test x"$build_windows" = x"yes"; then
124
-
SECP_TRY_APPEND_CFLAGS([-W2 -wd4146], $1) # Moderate warning level, disable warning C4146 "unary minus operator applied to unsigned type, result still unsigned"
124
+
SECP_TRY_APPEND_CFLAGS([-W3], $1) # Production quality warning level.
125
+
SECP_TRY_APPEND_CFLAGS([-wd4146], $1) # Disable warning C4146 "unary minus operator applied to unsigned type, result still unsigned".
126
+
SECP_TRY_APPEND_CFLAGS([-wd4244], $1) # Disable warning C4244 "'conversion' conversion from 'type1' to 'type2', possible loss of data".
127
+
SECP_TRY_APPEND_CFLAGS([-wd4267], $1) # Disable warning C4267 "'var' : conversion from 'size_t' to 'type', possible loss of data".
128
+
# Eliminate deprecation warnings for the older, less secure functions.
129
+
CPPFLAGS="-D_CRT_SECURE_NO_WARNINGS $CPPFLAGS"
125
130
# We pass -ignore:4217 to the MSVC linker to suppress warning 4217 when
126
131
# importing variables from a statically linked secp256k1.
127
132
# (See the libtool manual, section "Windows DLLs" for background.)
0 commit comments