There are implementations of ed25519 such as Tor or orlp-ed25519 (which is used by MeshCore) which export and import private keys in expanded-hash format.
Unfortunately, neither java.security's implementation of ed25519 nor Bouncycastle seem to support using such a key to do signatures at the moment, and apparently there's (at least) two different implementations both using 64 bytes.
Would it be possible to implement support for this format in Bouncycastle to allow key interchange with applications not using the seed?
There are implementations of ed25519 such as Tor or orlp-ed25519 (which is used by MeshCore) which export and import private keys in expanded-hash format.
Unfortunately, neither
java.security's implementation of ed25519 nor Bouncycastle seem to support using such a key to do signatures at the moment, and apparently there's (at least) two different implementations both using 64 bytes.Would it be possible to implement support for this format in Bouncycastle to allow key interchange with applications not using the seed?