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)