Binary To Private Key (HEX)
Generate and Convert Binary To HEX Private Key
import Blockthon as block
# Generated Random Binary
binary_string = block.getBinary()privatekey = block.Binary_To_PrivateKey(binary_string)Full code example for Generated Private Key HEX From Binary:
import Blockthon as block
# Generated Random Binary
binary_string = block.getBinary()
# convert binary to hex private key
privatekey = block.Binary_To_PrivateKey(binary_string)Last updated