Skip to content

Commit

Permalink
Setup Instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
amiralis committed May 5, 2017
1 parent 7e4531a commit cb936a4
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# pycon2017_crypto_tutorial
Applied Modern Cryptography in Python (PyCon 2017)
# Applied Modern Cryptography in Python (PyCon 2017)

[Amirali Sanatinia](http://www.ccs.neu.edu/home/amirali)

Today we use cryptography in almost everywhere. From surfing the web over https, to working remotely over ssh. Although most developers don't need to implement cryptography primitives, the knowledge and understanding of these building block allows them to better deploy them in their application. In modern crypto we have all the building block to develop secure application. However, we see instances of insecure code everywhere. Most of these vulnerabilities are not because of theoretic shortcomings, but due to bad implementation or a flawed protocol design. Cryptography is a delicate art where nuances matter, and failure to comprehend the subtleties of these building blocks leads to critical vulnerabilities. To add insult to injury most of the resources available are either outdated or wrong, and inarguably, using bad crypto more dangerous than not using it.


## Requirements

* Python 3
* [Jupyter Notebook](http://jupyter.org/)
* [cryptography](http://cryptography.io/)


## Setup Instructions
You need to have [pip](https://packaging.python.org/) installed. Optinally you can use [virtualenv](https://packaging.python.org/installing/#creating-virtual-environments) for an isolated installation of libraries instead of globally.

```
$ pip3 install jupyter
$ pip3 install cryptography

0 comments on commit cb936a4

Please sign in to comment.