Skip to content
Permalink
Browse files
Readme and Requirements for hashcraker added
  • Loading branch information
aa9863 committed Oct 15, 2021
1 parent 279008d commit ff23d72f3029ff62a6ff146bd08f1d3b1917f50b
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
@@ -0,0 +1,51 @@
# Hashcracking Code

"Solutions" for the hash cracking tasks.
Implemented as Unit-tests

## Instlling

YOu need to install some libraies, I would recommend using a virtual env

### Setup Env

(You only need to do this once

```
$python3 -m venv env
```

### Activate

On Linux

```
source env/scripts/activate
```

On Windows

```
env\scripts\activate.bat
#Or
env\scripts\activate.ps1
```

### Install Dependencies

```
pip insall -r REQUIREMENTS.txt
```

NOTE: Depending on your python version bcrypt can be insteresting to install

- update pip ```pip install --upgrade pip```
- RFTM (https://pypi.org/project/bcrypt/)

## Running the tests

```
pytest -v
```
@@ -0,0 +1,2 @@
pytest
bcrypt

0 comments on commit ff23d72

Please sign in to comment.