From 760e810337da72f14840080d442c66085b4e5941 Mon Sep 17 00:00:00 2001 From: Michael Barre Date: Tue, 14 Mar 2017 01:20:41 -0500 Subject: [PATCH] renamed file to make sure regen happens --- rsa1/description.md | 2 +- rsa1/grader.py | 2 +- rsa2/description.md | 2 +- rsa2/grader.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rsa1/description.md b/rsa1/description.md index d44c07b..8f7e8c3 100644 --- a/rsa1/description.md +++ b/rsa1/description.md @@ -1 +1 @@ -I found somebody's notes on their private RSA! Help me crack [this](${ciphertext_txt}). \ No newline at end of file +I found somebody's notes on their private RSA! Help me crack [this](${ciphertext1_txt}). \ No newline at end of file diff --git a/rsa1/grader.py b/rsa1/grader.py index b864bbf..4f75e94 100644 --- a/rsa1/grader.py +++ b/rsa1/grader.py @@ -39,7 +39,7 @@ def generate_ciphertext(random): def generate(random): return dict(files={ - "ciphertext.txt": generate_ciphertext + "ciphertext1.txt": generate_ciphertext }) def grade(random, key): diff --git a/rsa2/description.md b/rsa2/description.md index d5802d9..3c4893d 100644 --- a/rsa2/description.md +++ b/rsa2/description.md @@ -1 +1 @@ -Some more RSA! This time, there's no P and Q... [this](${ciphertext_txt}). \ No newline at end of file +Some more RSA! This time, there's no P and Q... [this](${ciphertext2_txt}). \ No newline at end of file diff --git a/rsa2/grader.py b/rsa2/grader.py index 4211957..fd30123 100644 --- a/rsa2/grader.py +++ b/rsa2/grader.py @@ -38,7 +38,7 @@ def generate_ciphertext(random): def generate(random): return dict(files={ - "ciphertext.txt": generate_ciphertext + "ciphertext2.txt": generate_ciphertext }) def grade(random, key):