From 48042cf2d6e852a926795e45691ab859b53e8303 Mon Sep 17 00:00:00 2001 From: Julien CLEMENT Date: Tue, 2 May 2023 16:19:27 +0200 Subject: [PATCH] fix typo in brachio again Signed-off-by: Julien CLEMENT --- jujure/content/writeups/fcsc_2023/brachiosaure.md | 6 +++--- jujure/static/brachiosaure/solve_writeup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jujure/content/writeups/fcsc_2023/brachiosaure.md b/jujure/content/writeups/fcsc_2023/brachiosaure.md index dcb8927..b74f7f6 100644 --- a/jujure/content/writeups/fcsc_2023/brachiosaure.md +++ b/jujure/content/writeups/fcsc_2023/brachiosaure.md @@ -167,9 +167,9 @@ Cutting drama right now, it is simply a matrix dot product: Alright so to recap what actually happens: -- In check serial, we perform the dot product of the user digest, interpreted a -linearized 8 * 8 matrix, with itself, effectively squaring it, which gives us -our serial (also in a linearized 8 * 8 matrix). +- In check serial, we perform the dot product of the user digest, interpreted + as a linearized 8 * 8 matrix, with itself, effectively squaring it, which + gives us our serial (also in a linearized 8 * 8 matrix). - In main, we perform the dot product of the user and serial IMAGES, and we can see from the code that the return value indicates wether or not the resulting diff --git a/jujure/static/brachiosaure/solve_writeup.py b/jujure/static/brachiosaure/solve_writeup.py index e2259a5..8d21b05 100755 --- a/jujure/static/brachiosaure/solve_writeup.py +++ b/jujure/static/brachiosaure/solve_writeup.py @@ -88,7 +88,7 @@ matrix_img_serial = img_to_matrix(img_serial) def invert(usr, serial): - # Add empty and identity matrices to maka it invetible + # Add empty and identity matrices to make it invetible usr = make_invertible(usr) serial = make_invertible(serial)