public inbox for nncp-devel@lists.stargrave.org
Atom feed
From: Sergey Matveev <stargrave@stargrave•org>
To: nncp-devel@lists.cypherpunks.su
Subject: Re: Possible distant future cryptography and format changes
Date: Fri, 3 Oct 2025 15:34:59 +0300	[thread overview]
Message-ID: <aN_C89ggZKm7TW35@stargrave.org> (raw)
In-Reply-To: <87qzvkq1yj.fsf@complete.org>

[-- Attachment #1: Type: text/plain, Size: 5094 bytes --]

Greetings!

*** John Goerzen [2025-10-02 19:11]:
>That looks interesting!  I have been using MessagePack in a number of
>contexts, such as Filespooler https://www.complete.org/filespooler/.

I love MessagePack and it is the most preferred format for me in most
cases. But it does not support streaming (field's length must be known
in advance) and does not force deterministic encoding (but in practice I
won't be surprised that most implementations have strict behaviour),
that was not perfect for embedded systems. So I just have not found good
enough existing format. MessagePack won't be a problem for NNCP use-cases,
but cryptographic messages (KEKS/CM) are already defined and Go
implementation covers a big subset of them.

>I have a bit of a bias towards using existing libraries where possible.

Completely support that bias. Me too. But sometimes there are no
satisfiable enough solutions.

>With crypto code, that is a stronger bias since there is something of a
>long history of (hopefully unintentional) weaknesses being discovered in
>crypto code.  I know TLS folks are doing ML-KEM these days.

Agreed. But I am biased against ML-KEM, because of DJB's:
https://ntruprime.cr.yp.to/faq.html
https://blog.cr.yp.to/20231003-countcorrectly.html
NIST has pretty bad reputation (especially after Dual EC DRBG), so its
decisions must be taken with high level of awareness. And, maybe most
importantly, SNTRUP was used in practice a long before Kyber/ML-KEM,
because of its inclusion in OpenSSH. It is just more mature and seems to
have higher security level than ML-KEM. According to various maillists,
many cryptographers are far from being satisfied with ML-KEM and they
want to see at least FrodoKEM (which was chosen by German's BSI) and
Classical McEliece more.

>I got the NNCP packet parsers and generators done [...]
>However, the current format has some notable limitations, particularly
>the 255-byte limits.
>The Filespooler packet format is given here: [...]

Yeah, I understand a will to implement all of that. Current NNCP's
format can be treated like a fixed structures, nothing more. No
flexibility.

Honestly I lost my interest in developing NNCP. It just works for me (I
use it extensively everyday). But I am already satisfied with only a part
of its functionality. Many features I have not used maybe since their
addition. I have got many items in my TODO list, but they are not
important personally for me. Adding PQ-cryptography, as an
counterexample :-), is an interesting task, so I will try to find time
for it. Adding or even fixing of some other issues... it is boring,
but of course they should be done. Maybe that is some kind of burnout.
NNCP get much attention (mainly by your, John, work) when my interest
was already declining :-). I even have not updated FreeBSD's port for a
long time. Recently I tried to update it, but it has some port-ecosystem
related issues that I am not too enthusiastic to debug and fix.

>A future NNCP packet format that does
>away with the fixed-length limits would be nice (and carrying some
>key-value parameters could make for easier enhancement in the future).

Yeah, that would be mainly various maps (objects in JSON terms).

>I would like to add a vote for compatibility [...]
>Perhaps it could be accomplished by having upgraded nodes generate both
>old-style keys and new-style ones. [...]

Agreed. But... I am not sure that backward compatibility will stay.

One of the annoying things in NNCP is its configuration format. It is
not friendly for machine editing. Hjson can be converted to JSON and
JSON can be edited by jq-like utilities, but that is not too convenient.
I do not like the fact of having two completely different configuration
formats: (h)json and "cfgdir" one, that has a huge hard-coded mapping
how to store each field of the configuration. So I am also thinking
about replacing all of that with something different, especially when
huge McEliece post-quantum keys will be definitely outside the
configuration file. That is just a coincidence, but recently I wrote
"damn small configuration" tool, that some kind mimics OpenWRT's like
UCI configuration tool experience, keeping all the data in a directories
hierarchy, but also allowing exporting/importing all of that in a single
text txtar-file.
http://www.git.cypherpunks.su/?p=dsc.git;a=blob_plain;f=dsc;h=837942ba3c2e0c0c9511be721afb92c597f2e78b8bd0d0d56a99335b47fea072;hb=HEAD
But maybe it is bad idea. Even does not have enough time to think about it.

But if configuration format will change, then newer NNCP will transform
to something completely incompatible, starting from configuration file
format, to different format of all kinds of packets and online protocol.
Keeping an old and new implementations will be like keeping two
different programs together. But I have no plans in changing nncp-*
command's API or any other logic.

-- 
Sergey Matveev (http://www.stargrave.org/)
LibrePGP: 12AD 3268 9C66 0D42 6967  FD75 CB82 0563 2107 AD8A

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 265 bytes --]

  reply	other threads:[~2025-10-03 12:35 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-28 10:05 Possible distant future cryptography and format changes Sergey Matveev
2025-10-03  0:11 ` John Goerzen
2025-10-03 12:34   ` Sergey Matveev [this message]
2025-10-07 13:31     ` John Goerzen
2025-10-08  8:54       ` Sergey Matveev
2026-03-18 10:57 ` Sergey Matveev
2026-03-18 15:02   ` Rafael Diniz
2026-03-18 15:10     ` Sergey Matveev
2026-03-18 19:27       ` Rafael Diniz