You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 18, 2024. It is now read-only.
I am using your library for Java blockchain development: https://github.com/Confidence-coin/coco
I was looking for the ability to generate a public key from a private key, eventually, I found this:
byte[] publicKey = new byte[32]; curve_sigs.curve25519_keygen(publicKey, ssk);
Can you make this code easier to find? For example, put it in Curve25519KeyPair.