增大难度

This commit is contained in:
cnrenil 2024-09-09 18:25:16 +08:00
parent 50df36f85b
commit 8b8b2c6a3e
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ def generate_substitution_cipher(flag):
' ': ' ' # 保持空格不变
}
substitution_rules.append("The quick brown fox jumps a lazy dog.")
substitution_rules.append("Pack my box with five dozen liquor jugs.")
encrypted_rules = []
for rule in substitution_rules:
for char in rule:

View File

@ -26,7 +26,7 @@ def generate_substitution_cipher(flag):
' ': ' ' # 保持空格不变
}
substitution_rules.append("The quick brown fox jumps a lazy dog.")
substitution_rules.append("Pack my box with five dozen liquor jugs.")
encrypted_rules = []
for rule in substitution_rules:
for char in rule: