Replies: 1 comment
-
I had a quick look at the paper. It says:
TweetNaCl.js indeed can use the extended 64-byte private key ( |
Beta Was this translation helpful? Give feedback.
-
I had a quick look at the paper. It says:
TweetNaCl.js indeed can use the extended 64-byte private key ( |
Beta Was this translation helpful? Give feedback.
-
Hi,
We want to implement BIP32-Ed25519 for hierarchical deterministic keys using Ed25519 - and will need to sign using the post-hash signing key (64-bytes, the left and right half, with the bits already cleared) without knowing the 32-bytes seed
It seems from the current API that this is not possible yet the paper mentioned that in the original NaCl library it is.
Using the naming conventions from this article we specifically need to sign using
a
andRH
(the private scalar and the right-half of the hash)This java implementation for instance exposes a way to instanciate a keypair from the
h
hash (left half and right half) directly for instance.Is there a way of doing this with tweetnacl as it is that I missed, and if not, what would be the recommended course of action ?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions