@@ -6,7 +6,7 @@ def decrypt_caesar_with_chi_squared(
6
6
ciphertext : str ,
7
7
cipher_alphabet : list [str ] | None = None ,
8
8
frequencies_dict : dict [str , float ] | None = None ,
9
- case_sensetive : bool = False ,
9
+ case_sensitive : bool = False ,
10
10
) -> tuple [int , float , str ]:
11
11
"""
12
12
Basic Usage
@@ -20,7 +20,7 @@ def decrypt_caesar_with_chi_squared(
20
20
* frequencies_dict (dict): a dictionary of word frequencies where keys are
21
21
the letters and values are a percentage representation of the frequency as
22
22
a decimal/float
23
- * case_sensetive (bool): a boolean value: True if the case matters during
23
+ * case_sensitive (bool): a boolean value: True if the case matters during
24
24
decryption, False if it doesn't
25
25
26
26
Returns:
@@ -117,6 +117,9 @@ def decrypt_caesar_with_chi_squared(
117
117
>>> decrypt_caesar_with_chi_squared('crybd cdbsxq')
118
118
(10, 233.35343938980898, 'short string')
119
119
120
+ >>> decrypt_caesar_with_chi_squared('Crybd Cdbsxq', case_sensitive=True)
121
+ (10, 233.35343938980898, 'Short String')
122
+
120
123
>>> decrypt_caesar_with_chi_squared(12)
121
124
Traceback (most recent call last):
122
125
AttributeError: 'int' object has no attribute 'lower'
@@ -158,7 +161,7 @@ def decrypt_caesar_with_chi_squared(
158
161
# Custom frequencies dictionary
159
162
frequencies = frequencies_dict
160
163
161
- if not case_sensetive :
164
+ if not case_sensitive :
162
165
ciphertext = ciphertext .lower ()
163
166
164
167
# Chi squared statistic values
@@ -172,10 +175,14 @@ def decrypt_caesar_with_chi_squared(
172
175
for letter in ciphertext :
173
176
try :
174
177
# Try to index the letter in the alphabet
175
- new_key = (alphabet_letters .index (letter ) - shift ) % len (
178
+ new_key = (alphabet_letters .index (letter . lower () ) - shift ) % len (
176
179
alphabet_letters
177
180
)
178
- decrypted_with_shift += alphabet_letters [new_key ]
181
+ decrypted_with_shift += (
182
+ alphabet_letters [new_key ].upper ()
183
+ if case_sensitive and letter .isupper ()
184
+ else alphabet_letters [new_key ]
185
+ )
179
186
except ValueError :
180
187
# Append the character if it isn't in the alphabet
181
188
decrypted_with_shift += letter
@@ -184,10 +191,11 @@ def decrypt_caesar_with_chi_squared(
184
191
185
192
# Loop through each letter in the decoded message with the shift
186
193
for letter in decrypted_with_shift :
187
- if case_sensetive :
194
+ if case_sensitive :
195
+ letter = letter .lower ()
188
196
if letter in frequencies :
189
197
# Get the amount of times the letter occurs in the message
190
- occurrences = decrypted_with_shift .count (letter )
198
+ occurrences = decrypted_with_shift .lower (). count (letter )
191
199
192
200
# Get the excepcted amount of times the letter should appear based
193
201
# on letter frequencies
0 commit comments