Skip to content

Commit 8bba34b

Browse files
author
Aitor Gómez Goiri
committed
Documenting a little bit more the requirements of this project
1 parent 30689f8 commit 8bba34b

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ pyNist800-108
44
Python implementation of Nist SP 800-108 KDF in Counter Mode
55

66

7+
Requirements
8+
------------
9+
10+
If you are going to contribute to this project, you might want to install some dependencies in your [virtualenv](http://virtualenv.readthedocs.org).
11+
12+
You can install them using the _requirements.txt_ file in the following way:
13+
14+
pip install -r requirements.txt
15+
16+
717
Installation
818
------------
919

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pycrypto==2.6.1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
@author: Aitor Gómez Goiri <[email protected]>
55
66
To install/reinstall/uninstall the project and its dependencies using pip:
7-
sudo pip install ./
8-
sudo pip install ./ --upgrade
9-
sudo pip uninstall netuse
7+
pip install ./
8+
pip install ./ --upgrade
9+
pip uninstall pynist800108
1010
'''
1111
from setuptools import setup, find_packages
1212

test/hashTest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import unittest
88
import binascii
9-
from kdf.nist_crypto import NIST
109
from Crypto.Hash.SHA import SHA1Hash
1110

1211
class NISTTest(unittest.TestCase):

0 commit comments

Comments
 (0)