Skip to content

Commit 78691bd

Browse files
authoredJan 25, 2021
Merge pull request #2 from lonkey/release-0.2.1
Release 0.2.1
2 parents b94f665 + 0891afe commit 78691bd

11 files changed

+67
-29
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Simple Cryptographic Functions
1+
# Simple Cryptographic Algorithms
22

3-
Python library for demonstrating the functionality of common cryptographic functions.
3+
Python library for demonstrating the functionality of common cryptographic algorithms.
44

55
## Requirements
66

7-
Python 3.7.9 or later including pip for installing the following dependencies:
7+
Python 3.7.9 or later including pip for installing the following requirements:
88

99
```shell
1010
pip install -r requirements.txt
1111
```
1212

13-
# Usage
13+
## Usage
1414

1515
To use, simply uncomment the corresponding function in `main.py` and adjust the sample values if necessary.
1616

‎cryptographic_functions/dh_calculations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
__author__ = "Lukas Zorn"
88
__copyright__ = "Copyright 2021 Lukas Zorn"
9-
__license__ = " GNU GPLv3"
10-
__version__ = "0.1.1"
9+
__license__ = "GNU GPLv3"
10+
__version__ = "0.2.1"
1111
__maintainer__ = "Lukas Zorn"
1212
__status__ = "Development"
1313

‎cryptographic_functions/elgamal_calculations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
__author__ = "Lukas Zorn"
99
__copyright__ = "Copyright 2021 Lukas Zorn"
10-
__license__ = " GNU GPLv3"
11-
__version__ = "0.1.1"
10+
__license__ = "GNU GPLv3"
11+
__version__ = "0.2.1"
1212
__maintainer__ = "Lukas Zorn"
1313
__status__ = "Development"
1414

‎cryptographic_functions/modulo_calculations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
__author__ = "Lukas Zorn"
88
__copyright__ = "Copyright 2021 Lukas Zorn"
9-
__license__ = " GNU GPLv3"
10-
__version__ = "0.1.1"
9+
__license__ = "GNU GPLv3"
10+
__version__ = "0.2.1"
1111
__maintainer__ = "Lukas Zorn"
1212
__status__ = "Development"
1313

‎cryptographic_functions/modulo_cyclic_groups.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
__author__ = "Lukas Zorn"
66
__copyright__ = "Copyright 2021 Lukas Zorn"
7-
__license__ = " GNU GPLv3"
8-
__version__ = "0.1.1"
7+
__license__ = "GNU GPLv3"
8+
__version__ = "0.2.1"
99
__maintainer__ = "Lukas Zorn"
1010
__status__ = "Development"
1111

‎cryptographic_functions/modulo_inverse_additive.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
__author__ = "Lukas Zorn"
77
__copyright__ = "Copyright 2021 Lukas Zorn"
8-
__license__ = " GNU GPLv3"
9-
__version__ = "0.1.1"
8+
__license__ = "GNU GPLv3"
9+
__version__ = "0.2.1"
1010
__maintainer__ = "Lukas Zorn"
1111
__status__ = "Development"
1212

‎cryptographic_functions/modulo_inverse_multiplicative.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
__author__ = "Lukas Zorn"
77
__copyright__ = "Copyright 2021 Lukas Zorn"
8-
__license__ = " GNU GPLv3"
9-
__version__ = "0.1.1"
8+
__license__ = "GNU GPLv3"
9+
__version__ = "0.2.1"
1010
__maintainer__ = "Lukas Zorn"
1111
__status__ = "Development"
1212

‎cryptographic_functions/rsa_calculations.py

+41-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
__author__ = "Lukas Zorn"
99
__copyright__ = "Copyright 2021 Lukas Zorn"
10-
__license__ = " GNU GPLv3"
11-
__version__ = "0.1.1"
10+
__license__ = "GNU GPLv3"
11+
__version__ = "0.2.1"
1212
__maintainer__ = "Lukas Zorn"
1313
__status__ = "Development"
1414

@@ -91,7 +91,7 @@ def keypair_generation(p, q, e=None, print_matrix=False, print_linear_factorizat
9191
def encryption(public_key, p):
9292
print(tabulate([['RSA Verschlüsselung']], tablefmt='fancy_grid'))
9393

94-
# Unpack the private key into its components
94+
# Unpack the public key into its components
9595
e, n = public_key
9696

9797
# Choose an integer p such that 0 ≤ p < n
@@ -116,7 +116,7 @@ def encryption(public_key, p):
116116
def decryption(private_key, c):
117117
print(tabulate([['RSA Entschlüsselung']], tablefmt='fancy_grid'))
118118

119-
# Unpack the public key into its components
119+
# Unpack the private key into its components
120120
d, n = private_key
121121

122122
# Choose an integer c such that 0 ≤ c < n
@@ -135,3 +135,40 @@ def decryption(private_key, c):
135135
f'p = {c}^{d} mod {n}\n'
136136
f'p = {p}', end='\n\n')
137137
return p
138+
139+
140+
# RSA Brute-force
141+
def brute_force_by_key(any_key):
142+
print(tabulate([['RSA Brute-Force Angriff (schlüsselbasiert)']], tablefmt='fancy_grid'))
143+
144+
# Unpack the key into its components
145+
a, n = any_key
146+
147+
# Choose multiple integers x such that 0 ≤ x < n
148+
x, y, z = random.sample(range(n), 3)
149+
150+
# Encryption
151+
x_c = (x ** a) % n
152+
y_c = (y ** a) % n
153+
z_c = (z ** a) % n
154+
155+
# Brute-force
156+
b = []
157+
for v in range(n):
158+
if x != (x_c ** v) % n:
159+
continue
160+
if y != (y_c ** v) % n:
161+
continue
162+
if z != (z_c ** v) % n:
163+
continue
164+
b.append(v)
165+
166+
# Calculation path output
167+
if len(b) < 1:
168+
print(
169+
f'Das Gegenstück für den Schlüssel K = {{{a}, {n}}} konnte nicht ermittelt werden.', end='\n\n')
170+
return -1
171+
print(
172+
f'Mögliche Gegenstücke für den Schlüssel K = {{{a}, {n}}} mit den Testwerten x = {x}, y = {y} und z = {z} sind:')
173+
print(tabulate(zip(*(b, [n] * len(b))), headers=['b', 'n'], tablefmt='pretty'), end='\n\n')
174+
return b[0], n

‎cryptographic_functions/shamir_calculations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
__author__ = "Lukas Zorn"
99
__copyright__ = "Copyright 2021 Lukas Zorn"
10-
__license__ = " GNU GPLv3"
11-
__version__ = "0.1.1"
10+
__license__ = "GNU GPLv3"
11+
__version__ = "0.2.1"
1212
__maintainer__ = "Lukas Zorn"
1313
__status__ = "Development"
1414

‎cryptographic_functions/shared_functions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
__author__ = "Lukas Zorn"
66
__copyright__ = "Copyright 2021 Lukas Zorn"
7-
__license__ = " GNU GPLv3"
8-
__version__ = "0.1.1"
7+
__license__ = "GNU GPLv3"
8+
__version__ = "0.2.1"
99
__maintainer__ = "Lukas Zorn"
1010
__status__ = "Development"
1111

‎main.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
__author__ = "Lukas Zorn"
1313
__copyright__ = "Copyright 2021 Lukas Zorn"
14-
__license__ = " GNU GPLv3"
15-
__version__ = "0.1.1"
14+
__license__ = "GNU GPLv3"
15+
__version__ = "0.2.1"
1616
__maintainer__ = "Lukas Zorn"
1717
__status__ = "Development"
1818

@@ -54,6 +54,7 @@
5454
# rsa_calculations.keypair_generation(rsa_p, rsa_q, rsa_e, print_matrix, print_linear_factorization)
5555
# rsa_calculations.encryption(rsa_public_key, rsa_plaintext)
5656
# rsa_calculations.decryption(rsa_private_key, rsa_ciphertext)
57+
# rsa_calculations.brute_force_by_key(rsa_public_key)
5758

5859
###############################
5960
# Diffie–Hellman initial values
@@ -65,9 +66,9 @@
6566

6667
# dh_calculations.key_exchange(dh_p, dh_g, dh_a, dh_b)
6768

68-
############################
69-
# Shamir three-pass protocol
70-
############################
69+
###########################################
70+
# Shamir three-pass protocol initial values
71+
###########################################
7172
shamir_p = 23
7273
shamir_a = 3 # Optional argument
7374
shamir_a_i = 15

0 commit comments

Comments
 (0)
Please sign in to comment.