I generated a private key using dice, then wrote a script to konvert that private key to its corresponding public key in its secp256k1 elliptic curve format (a 65-byte number beginning with 04).
Now, I read that there is a very large number of different addresses that one can generate from a single private key, so now I'd like to do exactly that: I would like to generate some random addresses, because I would like to use a different address for each transaction to my private key. Are thera already existing script that generate a certain number of addresses from a private/public key, or do any of you have instructions how I could write it myself?
Best regards
(1) So how many addresses are there per private key? Just one, or two (maybe each public key component (x and y) has its own address?)?
(2) Is the prodedure of generating this master key and deriving compatible normal private keys feasible without computer (e.g. using dice)?
– mjbeyeler Jul 27 '17 at 13:00