changed source links to new paths
This commit is contained in:
parent
574423ee2e
commit
eafb1587d3
|
@ -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>
|
@author: Christoph J. Scherr <software@cscherr.de>
|
||||||
@license: MIT
|
@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 argparse
|
||||||
import random
|
import random
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# values from the exercise
|
||||||
|
./authur1.py -e "abcd:632e4e5c,abcdef:0f6b8802,abcdefghijk:2638a819,foobar:782a826e,barfoo:885dc316"
|
|
@ -5,7 +5,7 @@ you also need the chiffrat.txt file in the same directory.
|
||||||
|
|
||||||
@license: MIT
|
@license: MIT
|
||||||
@author: Christoph J. Scherr <software@cscherr.de>
|
@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
|
MAX_IN_LINE = 16
|
||||||
DE_MOST_COMMON = ['E', 'N', 'I', 'R', 'A']
|
DE_MOST_COMMON = ['E', 'N', 'I', 'R', 'A']
|
||||||
|
|
|
@ -4,7 +4,7 @@ A small script to help analyze the md5 hash function.
|
||||||
|
|
||||||
@author: Christoph J. Scherr <software@cscherr.de>
|
@author: Christoph J. Scherr <software@cscherr.de>
|
||||||
@license: MIT
|
@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?
|
TODO do I need to implement md5 by myself for the assignment?
|
||||||
"""
|
"""
|
||||||
import argparse
|
import argparse
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
Dirty hash we covered in an excercise for Week 16 of 2023 in cryptography
|
Dirty hash we covered in an excercise for Week 16 of 2023 in cryptography
|
||||||
|
|
||||||
@author: Christoph J. Scherr <software@cscherr.de>
|
@author: Christoph J. Scherr <software@cscherr.de>
|
||||||
@source: https://git.cscherr.de/PlexSheep/python-dhbw/src/branch/master/src/trash-hash.py
|
|
||||||
@license: MIT
|
@license: MIT
|
||||||
|
@source: https://git.cscherr.de/PlexSheep/plexcryptool/src/branch/master/plexcryptool/trash-hash.py
|
||||||
"""
|
"""
|
||||||
import math
|
import math
|
||||||
import argparse
|
import argparse
|
||||||
|
|
Loading…
Reference in New Issue