ktanev
I have used until now this library for ed25519 signing and verifying - Ed25519 — Ed25519 v1.5.1. However, I am not pleased with the library at all. The signing time is 100-120ms and the validating of a signature 150-190ms, which I think could be better. Moreover, I am unable to extract the hash (sha512) used for the signature, which I would really like to have separately.
Do you have any recommendations on a better library for ed25519?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
hauleth
This library is implemented purely in Elixir, of course it will be slow. If you want to have faster and built-in implementation, then compile your Erlang with modern OpenSSL (1.1+ IIRC) and then you can use
:cryptomodule directly.ktanev
I have tried generating key using
:crypto.generate_key(:ecdh, :ed25519), but Edwards curves are still not implemented in:crypto.ec_curvesin order to use it (Erlang/OTP 22).hauleth
What is output of
info_lib/0? Because if you have compiled with OpenSSL 1.0 then it will not have Edward’s curves as these are implemented in OpenSSL 1.1 and later. In my case:So there is support for such.
EDIT:
Also if you check
edwards_curve_dh/0type then you will see that you need to use:x25519instead of:ed25519as a curve name.ktanev
The output from
info_lib/0is the same. Creating keys worked without any issues with:x25519, but signing still fails:I have tried using binary instead of string for the message, passing only the key, still no luck…
Here is a discussion from 6 years back for incomplete elliptic curve implementation in Erlang, I suppose it still continues to be that way
Any opinion on the libsalty library - GitHub - ArteMisc/libsalty: Elixir bindings for libsodium (NIF) · GitHub?
hauleth
Yes, now this fails, because when signing you need to use
:ed25519(don’t ask me why this works this way). You need to check documentation ofcrypto:sign/4.I haven’t used
libsalty, but if NaCL is what you need, or you just want to get crypto right without all that hassle, then it is good choice.chura.jey
why does it work this way?
ktanev
Yes, with
:crypto.sign(:eddsa, :sha256, msg, [priv_key, :ed25519])worked! I get between 1.5e-4 and 2.3e-4 in time which is great.However,
:crypto.verify(:eddsa, :sha256, msg, signature, [pub_key, :ed25519])always returns false…EDIT:
I have tested the Salty library and works impressively good - in terms of performance it is even faster than the Erlang
:crypto. For now I will stick with it.ktanev
In
:crypto.generate_key(:ecdh, :ed25519)ecdhrefers to all kinds of eliptic curves and then we usex25519. While in:crypto.sign(:eddsa, :sha256, msg, [priv_key, :ed25519])we have special function for Edwards curves, in which we useed25519.I hope it makes a bit more sense.
geonnave
I believe
:crypto.generate_key(:eddsa, :ed25519)should be used for EdDSA signatures. The curvex25519is only used for key exchange algorithms (likeecdh). Anyway, the:eddsa, :ed25519parameter combination seems to be supported only in Erlang 23.1.Regarding
libsalty, the repo has been archived, so I am not confident in using it.Given this, any ideas? Perhaps the best option will be to depend on Erlang 23.1…
f0rest8
I think this was already solved… but I’ve been playing with the :crypto library recently and it looks like you needed to use a different parameter.
This is an easy mistake to do because of the formatting of the documenation. So, it looks like this:
edwards_curve_dh() = x25519 | x448
edwards_curve_ed() = ed25519 | ed448
But, the params for type :ecdh are the following: ecdh_params() = ec_named_curve() | edwards_curve_dh() | ec_explicit_curve()
If you switch out :ed25519 (which is edwards_curve_ed()) for :x25519, then it’ll work (assuming you’re now using erlang 23+). I’m currently on 23.2.1 and it’s working.