Basically I need you to implement BIP0032 for NXT, or at least tell us if and why it is not possible to do so.
A link to show you what I am trying to accomplish here:
https://github.com/genjix/bips/blob/master/bip-0032.md, It was implemented in Electrum bitcoin thin client. For me it will suffice if you make the appropriate working address generation in Java.
definitely possible, but currently, I don't think, you would be able to use derived keys -- that is, not until, there will be APIs that CfB mentioned here:
How does one sign a transaction on the client side instead of sending the password in the clear to the server? Any info on this?
I'm working on this. The workflow will look like:
1. U use
prepareTransaction API call that returns raw bytes
2. U sign the bytes and inject the signature into them
3. U use
broadcastTransaction to send the transaction
Also I think it might be possible, to use bit different scheme, than the one described in BIP.
(out of curiosity, why would you want that, cause maybe there's other way to do it in case of NXT?)