An open API service indexing awesome lists of open source software.

https://github.com/ishankhare07/rpc

a python to python implementation of rpc (RMI) for generating hashes(sha256/sha512)
https://github.com/ishankhare07/rpc

Last synced: 10 months ago
JSON representation

a python to python implementation of rpc (RMI) for generating hashes(sha256/sha512)

Awesome Lists containing this project

README

          

rpc
===

a python to python implementation of rpc (RMI) for generating hashes(sha256/sha512)

Tutorial
========

Step 1 :
==========
>Download the repo

Step 2 :
==========
>Extract the zip

Step 3 :
==========
>Rename the extracted folder to 'rpc'

Step 4 :
==========
>Start the server by the command :-
>```shell
>python rpc/server.py
>```

Step 5 :
==========
Run the client in a separate terminal as follows :-
>```python
>import rpc
>c = rpc.client()
>#generate a sha256 hash
>c.sha(256,'this is my string')
>#generate a sha512 hash
>c.sha(512,'this is another string')
>```