vstoykovbg

Results 5 issues of vstoykovbg

Example code: ``` #!/usr/bin/python3 from hashlib import sha512 from Cryptodome.Hash import SHA512 import time initial_digest=b'test.test.test.test.test' iterations=500000 # ******************* digest=initial_digest start = time.time() for counter in range(iterations): digest=sha512(digest).digest() end = time.time()...

Here is how it looks like: https://www.youtube.com/watch?v=LN_DjgREXjU CPUlimit version 2.4

Create keys and addresses from Electrum 2 XPUB public master key New functions: electrum_pubkey_v2 and electrum_address_v2. Example code: ```python #!/usr/bin/python3 from bitcoin import * this_Electrum_v2_XPUB_master_public_key = "xpub661MyMwAqRbcFdBCo3DNoAd2jxiTshTYz2zdx7wDmnWtkFVe5Egzkb7dwsKbgGPj4SjEHSnRawewD1PJYLbQsZaXVGoaMQVmVc4SMXurZGw" print ("\n *...

Why it attempts to read `/var/mail/bitcoin`? There is no such reading request in the source, I searched and did not found it. ``` $ ./test.py from: can't read /var/mail/bitcoin ./test.py:...

I run Chromium like this: `nsdo tornamespace1 /usr/bin/chromium-browser --temp-profile --incognito` And can't use keyboard with chrome (can't type URL, etc.). ``` valentin@computer:~$ nsdo --version nsdo version 1.0 valentin@computer:~$ valentin@computer:~$ cat...