Cryptography version update (#10)

* 2.1 version of pyca/cryptography got released. Version bumped
* Python 3.5 support reintroduced, as we are now using BLAKE from
Cryptography, not hashlib
* Removed hashlib references, uncommented Cryptography references.
* Enum fix for python 3.5 compat

Closes #9
This commit is contained in:
Piotr Lizończyk
2017-10-11 18:58:07 +02:00
committed by GitHub
parent 81a2f7e845
commit 3bfb39883e
7 changed files with 52 additions and 57 deletions

View File

@@ -10,7 +10,7 @@ This package shall not be used (yet) for production purposes. There was little t
Use common sense while using - until this package becomes stable.
## Installation and prerequisites
For now, only Python 3.6 is supported.
For now, only Python 3.5+ is supported.
Install via pip:
```
@@ -82,11 +82,9 @@ pytest
### Todo-list for the project:
- [ ] fallback patterns support
- [ ] documentation on Read the Docs and more extensive readme
- [ ] scripts for keypair generation (+ console entry points)
- [ ] "echo" (noise-c like) example
- [ ] extensive logging
- [ ] bringing back Python 3.5 support and supporting Python 3.7 (dependent on Cryptography package updates)
- [ ] move away from custom ed448 implementation
- [ ] implement countermeasures for side-channel attacks
- [ ] **get peer review of the code**