Skip to content

Commit

Permalink
type check
Browse files Browse the repository at this point in the history
  • Loading branch information
freed2003 committed Nov 24, 2024
1 parent 27c2af5 commit 2f564a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-11-24-dualsummoners.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ for _ in range(10):

So we are also given an encrypt oracle, except that instead of returning the ciphertext it returns the computed tag from the AES object of our choice, either `aes1` or `aes2`. We get the flag if we can find an input such that the two ciphers return the same MAC.

AES-GCM works in the field $$GF(2^128)$$ with polynomial $$x^{128} + x^7+x^2+x+1$$, so all further expressions will be implied to be in this field. Now how do we actually find the desired input, first let's look at how the tag is computed. Let
AES-GCM works in the field $$GF(2^{128})$$ with polynomial $$x^{128} + x^7+x^2+x+1$$, so all further expressions will be implied to be in this field. Now how do we actually find the desired input, first let's look at how the tag is computed. Let

$$
c = c_1|c_2|c_3|\dots |c_n
Expand Down

0 comments on commit 2f564a1

Please sign in to comment.