https://github.com/eladch/computer-security-project
Implementation of double bloom filter & password strength
https://github.com/eladch/computer-security-project
bloom-filter password-strength pysimplegui python
Last synced: 4 months ago
JSON representation
Implementation of double bloom filter & password strength
- Host: GitHub
- URL: https://github.com/eladch/computer-security-project
- Owner: EladCh
- License: mit
- Created: 2020-06-01T16:48:18.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-29T17:28:59.000Z (almost 5 years ago)
- Last Synced: 2024-12-20T05:24:53.382Z (5 months ago)
- Topics: bloom-filter, password-strength, pysimplegui, python
- Language: Python
- Size: 8.98 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Computer-Security-Project
Implementation of double bloom filter & password strength## Dependencies for ubuntu18.04:
python version 3.6 (or newer)
```
$ sudo apt-get update
$ sudo apt-get install -y python3.6
$ sudo apt-get install -y python3-pip
```
## Dependencies for centos7:
```
$ sudo yum update
$ sudo yum install -y python36-setuptools
$ sudo yum install -y python3-devel
$ sudo easy_install-3.6 pip
```extra dependencies
```
$ sudo pip3 install mmh3
$ sudo pip3 install bitarray
```
PySimpleGUI
```
pip3 install pysimplegui
```
## Visualization
In wsl applications X server is required to run on the windows machine.
Download can be found here: https://sourceforge.net/projects/xming/
In order to set the display to the right output use the following in the CMD:
```
export DISPLAY=:0
```