changed source links to new paths

This commit is contained in:
Christoph J. Scherr 2023-04-25 21:33:05 +02:00
parent 574423ee2e
commit eafb1587d3
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
5 changed files with 7 additions and 4 deletions

View File

@ -6,7 +6,7 @@ Since this (auth) hash did not have a name before, I gave it the name 'authur1'
@author: Christoph J. Scherr <software@cscherr.de>
@license: MIT
@source: https://git.cscherr.de/PlexSheep/python-dhbw/src/branch/master/src/authur1.py
@source: https://git.cscherr.de/PlexSheep/plexcryptool/src/branch/master/plexcryptool/authur1.py
"""
import argparse
import random

View File

@ -0,0 +1,3 @@
#!/bin/bash
# values from the exercise
./authur1.py -e "abcd:632e4e5c,abcdef:0f6b8802,abcdefghijk:2638a819,foobar:782a826e,barfoo:885dc316"

View File

@ -5,7 +5,7 @@ you also need the chiffrat.txt file in the same directory.
@license: MIT
@author: Christoph J. Scherr <software@cscherr.de>
@source: https://git.cscherr.de/PlexSheep/python-dhbw/src/branch/master/src/basic-decrypt.py
@source: https://git.cscherr.de/PlexSheep/plexcryptool/src/branch/master/plexcryptool/basic-decrypt.py
"""
MAX_IN_LINE = 16
DE_MOST_COMMON = ['E', 'N', 'I', 'R', 'A']

View File

@ -4,7 +4,7 @@ A small script to help analyze the md5 hash function.
@author: Christoph J. Scherr <software@cscherr.de>
@license: MIT
@source: https://git.cscherr.de/PlexSheep/python-dhbw/src/branch/master/src/md5-analyzer.py
@source: https://git.cscherr.de/PlexSheep/plexcryptool/src/branch/master/plexcryptool/md5-analyzer.py
TODO do I need to implement md5 by myself for the assignment?
"""
import argparse

View File

@ -3,8 +3,8 @@
Dirty hash we covered in an excercise for Week 16 of 2023 in cryptography
@author: Christoph J. Scherr <software@cscherr.de>
@source: https://git.cscherr.de/PlexSheep/python-dhbw/src/branch/master/src/trash-hash.py
@license: MIT
@source: https://git.cscherr.de/PlexSheep/plexcryptool/src/branch/master/plexcryptool/trash-hash.py
"""
import math
import argparse