Update for 09-11-21 14:45

This commit is contained in:
Tyler Perkins 2021-11-09 14:45:01 -05:00
parent f88760b21f
commit 5d644fa6a6
2 changed files with 14 additions and 0 deletions

13
tech/Affine.wiki Normal file
View File

@ -0,0 +1,13 @@
= Affine =
Affine cipher is a type of [[substitution]] cipher.
The cipher is of model
f(x) = ax + b mod 26
Where x is some number corresponding to a letter, 0-25. a and b are variables.
To decipher, the formula is of form
f(y) = a^-1(y - b) mod 26

View File

@ -9,6 +9,7 @@ Hiding information
=== Ciphers ===
* [[substitution|Substitution]]
* [[Affine]]
=== Math for Crypto ===