Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 527 Bytes

getting_started.rst

File metadata and controls

28 lines (18 loc) · 527 Bytes

Getting Started

You will need python 3.6 and libsodium installed to run didery.py. You can find python 3.6 here and libsodium here.

Installation

To install didery.py start your virtual environment and run the command below:

$ pip install -e didery.py/

Importing

import diderypy.lib as lib

vk, sk, = lib.generating.keyGen()

print(vk)
print(sk)