New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

EUDP

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

EUDP

Encrypted UDP COmmUnicAtioN

1.0.0
PyPI
Maintainers
1

EUDP

Encrypted UDP

darkmash-org

Install

  pip install EUDP
  
  

Features

  • Cross platform (i think)
  • RSA and AES Encryption

Usage/Examples

import EUDP

Server Side


def client_loop(server,cli):
  pass # do stuff

server = EUDP.EUDPServer(IP, Port, "key") # client_loop will be called giving args server-obj and client 

server.send(client,msg) # sends msg
server.recv()     # recvs msg
server.close()    # close connection

Client Side

client = EUDP.EUDPClient(IP, Port, "key") 

client.send(msg)  # send msg to server
client.recv()     # recv msg from server
client.close()    # close connection with server

License

MIT

Authors

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts