Update for 31-01-22 17:15

This commit is contained in:
Tyler Perkins 2022-01-31 17:15:01 -05:00
parent da31d1ec7a
commit 35942c30fe
4 changed files with 21 additions and 3 deletions

4
math/Trap_door.wiki Normal file
View File

@ -0,0 +1,4 @@
= Trap door =
A trap door function is a function that maps some domain to a range, and the
process of solving the inverse of said function is infeasable

View File

@ -2,7 +2,8 @@
ECC is an algorithm that solves the same problem as [[RSA]], but with smaller
key sizes. It is asymetric and based on [[../math/Eliptic_Curve]]s and based on
the difficulty of inding a curve given points on said curve.
the difficulty of inding a curve given points on said curve, and a
[[../math/Trap_door]]
== algorithm ==

9
tech/Signatures.wiki Normal file
View File

@ -0,0 +1,9 @@
= Signature =
A signature is a way of verifying that someone is who they claim they are. They
are generally composed of a
* hash of the algorithm
* cryptographic way of verifying the signed message
However to ensure

View File

@ -26,14 +26,18 @@ Hiding information
* [[DSS]]
* [[Eliptic_Curve]]
=== [[Signatures]] ===
* [[Signatures]]
=== Misc ===
* [[LFSR|Linear Feedback Shift Registers]]
* [[modular_exponentiation|Modular Exponentiation]]
=== Math for Crypto ===
* [[../math/congruences]]
* [[../math/congruences|Congruneces]]
* [[modular_exponentiation|Modular Exponentiation]]
-------------------