I'm looking at implementing elliptic curve point compression a la SEC1
(admittedly, mostly to reduce the number of "feature not supported" code
paths in a library, but it seems like a somewhat useful ability).
Nettle/Hogweed already implements it internally for curve25519, but I want
to implement it for the "secp" curves as well.
Point compression is easy enough, but point decompression requires some
curve math, potentially dependent on the specific curve, and some of it is
redundant …
[View More]with what's already done in ecc_point_set(). So I was thinking
about moving this functionality into Hogweed as a function along the lines
of ecc_point_set_compressed(), which would take, instead of a y-coordinate,
an int containing the sign/parity of the y-coordinate.
So my question for the list and for the maintainers is, is this a
reasonable API to add to Hogweed? Is there interest in including it in
Hogweed if I were to take the time to turn it into a tidy patch?
[View Less]
I've now merged Daiki's implementation of curve448, and I've done some
followup cleanups: Moving and renaming edwards/twisted edwards
functions, and using a shared ecc_mul_m function for both curve25519_mul
and curve448_mul.
Pending work:
1. Eddsa signatures with curve448. Needs SHAKE support first (Daiki
posted patches for this long ago).
2. Renaming of stuff using curve names consistently (recent patches by
Dmitry). Preparation for new gost curves.
3. I'm considering changing the …
[View More]struct ecc_point representation to use
montgomery representation of the for the individual coordinates, for
primes where we use that. Then ecc_a_to_* will (almost?) be
redundant. This is inline with also adding other coordinate changes
here, if that will be needed for new curves. For the inverse
functions, ecc_*_to_a, they're currently repsonsible both for
inverting and eliminating the redundant z coordinate, and converting
individual coordinates back from montgomery representation, when
needed.
4. Adding support for compact representation (patches from Wim Lewis). I
have some of the preparations merged on a branch, but I think it will
be simpler if (3) is done first.
Regards,
/Niels
--
Niels Möller. PGP-encrypted email is preferred. Keyid 368C6677.
Internet email is subject to wholesale government surveillance.
[View Less]
Hello,
Are there any plans for post-quantum algorithms implementation in the
library?
Given the current state of quantum computing development, and (please
correct me if I'm wrong) the vulnerability of public key exchange (RSA,
ECDSA) given the former, I'm curious to see if anyone can share their
plans. I was also looking at the following, for reference:
https://pq-crystals.org/.
(Sending this a 2nd time, after I joined the list.)
For the Nettle crypto library:
If the C compiler lacks __builtin_bswap64, then Nettle may call a
function named __builtin_bswap64 and get a link error. The problem is
that ./configure doesn't check for link errors. I append a small diff
to switch from AC_TRY_COMPILE to AC_TRY_LINK.
OpenBSD, on some unusual hardware platforms, still uses GCC 4.2.1, which
doesn't have __builtin_bswap64. Manphiz reported to OpenBSD that the
build of Nettle …
[View More]3.5.1 failed on mips64el/longsoon hardware:
https://marc.info/?l=openbsd-ports&m=157510504817444&w=2
The error was "undefined reference to `__builtin_bswap64'".
Nettle only uses __builtin_bswap64 (in ctr.c) on little-endian hardware.
The error didn't happen when OpenBSD built Nettle with GCC 4.2.1 on
big-endian platforms, like powerpc/macppc.
In traditional C, you never needed to declare functions if their return
type was int. C code like `whatever(11, "a string")` would implicitly
declare `int whatever();`. Likewise, if __builtin_bswap64 isn't a
built-in, then `__builtin_bswap64(x)` in ./configure does implicitly
declare `int __builtin_bswap64();` as a function. AC_TRY_COMPILE can
compile this function call, but AC_TRY_LINK can't link it.
OpenBSD decided to patch ./configure to do a link test:
https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/security/libnettle/patches/…
The below diff is for configure.ac in Nettle git master cdbbe64. After
I made this change, I ran ./.bootstrap and checked the build on my
OpenBSD powerpc/macppc machine with GCC 4.2.1:
$ ../configure --disable-documentation \
> CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib
$ gmake
$ gmake check
(The --disable-documentation prevents an error from makeinfo 4.8, which
seems too old. The FLAGS find gmp in /usr/local, because OpenBSD's
compilers don't look there by default. gmake is GNU make.)
The build got "All 99 tests passed", then "All 3 tests passed".
config.log shows that "checking for __builtin_bswap64" failed with the
"undefined reference" error. --George
diff --git a/configure.ac b/configure.ac
index 3547cae4..7ac84f2e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -213,7 +213,7 @@ AC_C_BIGENDIAN([AC_DEFINE([WORDS_BIGENDIAN], 1)
AC_CACHE_CHECK([for __builtin_bswap64],
nettle_cv_c_builtin_bswap64,
-[AC_TRY_COMPILE([
+[AC_TRY_LINK([
#include <stdint.h>
],[
uint64_t x = 17;
[View Less]