more readme

This commit is contained in:
Sergey Chernov 2023-11-14 03:36:58 +03:00
parent 4e2748f2ae
commit bcf0140edb

View File

@ -10,8 +10,10 @@ and every connection (while parsec caches session keys to avoid time-consuming k
keys cryptography for session is shifted to use ed25519 curves which are supposed to provide agreeable strength with
enough speed to protect every connection with a unique new keys. Also, we completely get rid of SHA2.
Kiloparsec used denser binary format (bipack, no more key=values) and advanced typed RPC interfaces, with
special mechanics to allow same interfaces to be easily connected to several various type channels at once.
Kiloparsec also uses a denser binary format (bipack, no more key-values)
which reveals much less on the inner data structure, providing advanced
typed RPC interfaces with kotlinx.serialization.
The architecture allows connecting same functional interfaces to several various type channels at once.
Also, the difference from parsecs is that there are no more unencrypted layer commands available to users.
All RPC is performed over the encrypted connection.