From 4f93ed13362e70853b97750bdfaf4083e102eabb Mon Sep 17 00:00:00 2001 From: Danielle Madeley Date: Wed, 31 May 2017 12:12:01 +1000 Subject: [PATCH] Add Python 3.4 to supported list --- .travis.yml | 1 + README.rst | 11 ++++++++++- setup.py | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ce00d21..ade6c63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ sudo: false language: python python: + - '3.4' - '3.5' - '3.6' diff --git a/README.rst b/README.rst index 155d8db..ad6a4ff 100644 --- a/README.rst +++ b/README.rst @@ -114,11 +114,17 @@ Tested Compatibility Things that should almost certainly work. +Python version: + +* 3.4 (with `aenum`) +* 3.5 (with `aenum`) +* 3.6 + PKCS#11 version: * 2.4 -Libraries: +Devices/Libraries: * SoftHSMv2 * Thales nCipher (Security World) @@ -133,6 +139,7 @@ Operations: * Encrypt, Decrypt * Sign, Verify +* Wrap, Unwrap * Generate Key * Generate Keypair * Derive Key @@ -143,6 +150,8 @@ Feel free to send pull requests for any functionality that's not exposed. The code is designed to be readable and expose the PKCS#11 spec in a straight-forward way. +If you want your device supported, get in touch! + More info on PKCS#11 -------------------- diff --git a/setup.py b/setup.py index c814db2..7984266 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Security :: Cryptography',