Skip to content

Commit

Permalink
Updated manual and added changelog for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
AvinashSingh786 committed Jul 6, 2023
1 parent d3cd147 commit b513dc8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ This tool can be run from a docker container that can be built using the dockerf
git clone git@github.com:AvinashSingh786/SecureRS.git
cd SecureRS
python3 -m pip install --user virtualenv
apt-get install python3-venv python3-magic # for Linux
sudo apt-get install python3-venv python3-magic # for Linux
python3 -m venv venv
source venv/bin/activate # for Linux
pip3 install python-magic-bin # for Windows
.\venv\Scripts\activate # for Windows
(venv)$ pip3 install -r requirements.txt
(venv)$ pip install -r requirements.txt

```

## Usage
Expand Down Expand Up @@ -92,4 +93,15 @@ Below are screenshots of the tool.
MIT License

## Publications
- In-progress
- Singh, A., Ikuesan, R.A. and Venter, H. (2022) ‘Secure storage model for digital forensic readiness’, IEEE Access, 10, pp. 19469–19480. doi:10.1109/access.2022.3151403.

## Update log
- V1 (13/07/2021)
- Initial Release
- V2 (06/07/2023)
- Now make use of Django 4
- Upgraded encryption to use AES for speed
- Handles larger files
- Uses a custom fileupload handler for hashing before being touched by Django handlers
- Bug fixes and UI improvements
- Due to encryption changes, this version is no longer compatible with previous releases
Binary file modified UserManual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion performance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@profile
def make_request(i):
global SUCCESS, COUNTER
name = "UserManual.docx"
name = "README.md"
hash_md5 = hashlib.md5()
with open(name, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
Expand Down

0 comments on commit b513dc8

Please sign in to comment.