Author

Topic: Convert multiple bitcoin uncompressed to compressed pub. key? (Read 135 times)

newbie
Activity: 17
Merit: 0
Ok, so i found a web to convert multiple pub. key, addresses,.... if some one needs it: https://privatekeys.pw/calc
newbie
Activity: 17
Merit: 0
Well, do you have a script that can convert one uncompressed key to a compressed key?

If that is so, start with that. Then you can write a simple function around it that takes a list of keys like this:

Code:
#!/usr/bin/python3

def to_compressed(key):
    # .... return the compressed key

def many_to_compressed(keys):
    for key in keys:
    print(to_compressed(key))


No not really, couldn't  find not even one, one for one converter for pub. key script. Except https://iancoleman.io/bitcoin-key-compression/   but its in Java and i don't have much clue about coding.
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
Well, do you have a script that can convert one uncompressed key to a compressed key?

If that is so, start with that. Then you can write a simple function around it that takes a list of keys like this:

Code:
#!/usr/bin/python3

def to_compressed(key):
    # .... return the compressed key

def many_to_compressed(keys):
    for key in keys:
    print(to_compressed(key))
newbie
Activity: 17
Merit: 0
Hi

I already search but with no luck, for the script i could convert multiple Bitcoin pub. keys from uncompressed to compressed, and also than all compressed pub. keys to pub. address?
If anyone,... ?

Thanks in advance! 
Jump to: