Advertisement
Guest User

Untitled

a guest
Jan 26th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. # Example using libnacl based encryption engine
  2.  
  3. (venv)[gm@localhost libnacl]$ python demo.py
  4. username = fred, password = secret
  5. username = mary, password = secret
  6. (venv)[gm@localhost libnacl]$ sqlite3 /tmp/demo.db 'select * from user;'
  7. 1|fred|b2997d0bf6634b6472881f7c40dab2f5e880f03fdeca340aea977500441479ed04637fae0d5f49bd0c9ab4bdcd9a
  8. 2|mary|abb99fe819e861b105eae670741360cf3a51e414a0670d87e20432166bafa859d4733092c14a602fb76f58264fb6
  9. (venv)[gm@localhost libnacl]$ pip freeze
  10. You are using pip version 6.0.8, however version 8.0.2 is available.
  11. You should consider upgrading via the 'pip install --upgrade pip' command.
  12. cffi==1.5.0
  13. cryptography==1.2.1
  14. enum34==1.1.2
  15. idna==2.0
  16. ipaddress==1.0.16
  17. libnacl==1.4.4
  18. pyasn1==0.1.9
  19. pycparser==2.14
  20. six==1.10.0
  21. SQLAlchemy==1.0.11
  22. SQLAlchemy-Utils==0.31.6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement