is an alias
is an alias
I have a python code of 1000 LOC that I am happy to share. It uses a client with GUI and a server. Upon user.__button_click(), the client sends a request...
I implemented a class torsocket to replace socket for P2P communication. It works in principle, but of 1000 attempts for connection I might have one successful send/recv and 999 TimeOutErrors....
I kindly ask for help in replacing the following lines suitably, such that the server will see an incorrect client's IP address. The following creates a client_socket of type socket...
Hi, I know this is no issue but I am failing at doing the socket 2P2 use case anonymously via torpy. A is anonymous. B is in the clear. A...
Hi, I found the following non-deterministic ed25519 signature code in a deprecated library. ``` import ed25519 privKey, pubKey = ed25519.create_keypair() print("Private key (32 bytes):", privKey.to_ascii(encoding='hex')) print("Public key (32 bytes): ",...
Hi, At this point I have tried about 20 different "acclaimed solutions" that all did not work. All on top was torpy, that seems to not be the actual tor...
Hi Fernando, I looked into your voting system. I want to get in touch with you via email. I am a mathematician and taught myself the theoretical crypto concepts. I...
Hello, I search an efficient non-deterministic signature algorithm in python. I found the following example for using ed25519, which reads VERY intriguing: ``` import ed25519 privKey, pubKey = ed25519.create_keypair() print("Private...