|
|
|
|
|
by pg314
3213 days ago
|
|
> There is just no way to securely create a secret key. That is wrong. You can generate one relatively easily with dice (google for it). > Because the algorithm is so complex, you have to trust somebody else's software to create the key. You're conflating generating the key, which is just generating a random number in a certain range, with calculating the public address, which involves some operations on elliptic curves. The algorithm is not that complex. Using a library like openssl/ec it is not that hard to generate the public address. It takes about 30 lines of C code using that library. > How do you know that software is neither malicious nor buggy? You can read the source code. |
|