- Notifications
You must be signed in to change notification settings - Fork5
Elliptic Curve Point compression/decompression for mbedtls
License
mwarning/mbedtls-ecp-compression
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This is all about two helper methods calledmbedtls_ecp_decompress() andmbedtls_ecp_compress().They perform X25519 / Curve25519 point compression and decompression. This halves the length of the public key.mbedTLS will likely never support point decompression, as it is not mandated in the TLS specification.
EC crypto keys for TLS consist of concatenated x and y coordinates (hence a point), which makes them rather long to print out. But since the function is known, only x really needs to be transmitted. This can help to keep QR-Codes smaller, as less data needs to be transmitted.
For support of mbedTLS version < 3.0.0, check out an older commit.
Update mbedTLS can be compiled with support to read compressed points. See theMerge Request.
Only curves3 mod 4 are supported:
- secp521r1
- brainpoolP512r1
- secp384r1
- brainpoolP384r1
- secp256r1
- secp256k1
- brainpoolP256r1
- secp192r1
- secp192k1
Seethis post.
About
Elliptic Curve Point compression/decompression for mbedtls
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Contributors3
Uh oh!
There was an error while loading.Please reload this page.