Update for 15-12-21 15:45

This commit is contained in:
Tyler Perkins 2021-12-15 15:45:01 -05:00
parent 276d18afa8
commit 404f84f178
3 changed files with 14 additions and 0 deletions

View File

@ -56,5 +56,6 @@ Different ways to store and operate on data, with differing efficiency
== Common operations ==
* [[gcd]] - Find the GCD of two numbers
* [[modular_exponentiation|Modular Exponentiation]] - Solve a^b mod n
[[index]]

View File

@ -0,0 +1,12 @@
= Modular Exponentiation =
Modular Exponentation applies to problems of the format
a^b mod n
often when a^b becomes some very large number. This is a common problem to
solve in computer science, espeically cryptography.
Two things to keep in mind
- (x^a)^s = x^2a
- x^(a+b) = x^a * x^b

View File

@ -14,6 +14,7 @@ Hiding information
=== Misc ===
* [[LFSR|Linear Feedback Shift Registers]]
* [[modular_exponentiation|Modular Exponentiation]]
=== Math for Crypto ===