Skip to content

Commit 7626f46

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 867b681 + 0279974 commit 7626f46

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
This project is under development, and it's focusing on the comparative analysis of different primality testing algorithms.\
1+
This project is the comparative analysis of primality testing algorithms.\
2+
\
3+
Modern cryptography algorithms like RSA need primality tests to generate large random primes.\
4+
Specifically, RSA uses the product of two prime numbers to generate the public and private keys; if these primes are predictable, it makes it easier for an attacker to break the encryption scheme.\
25
\
3-
Modern cryptography algorithms like RSA or ElGamal need primality tests to generate large random primes.\
4-
For instance, RSA uses the product of two prime numbers to generate the public and private keys; if these primes are predictable, it makes it easier for an attacker to break the encryption scheme.
56
Large random primes are constructed in practice by generating pseudorandom numbers and then doing a primality test such as the Fermat primality test or something more powerful such as the Miller–Rabin primality test.\
67
These primality tests fail for certain numbers called **pseudoprimes**.\
7-
My research focuses on analyzing the class of Perrin-type primality tests- **Lucas-Type Sequence**. Dougherty-Bliss and Zeilberger looked at these recently. They find that certain recurrent sequences produce primality tests for which the smallest pseudoprime is very large.
8+
My research focuses on analyzing the class of Perrin-type primality tests- **Lucas-Type Sequence**: \
9+
\
10+
$$V_{n+2} = c_1 V_{n+1} + c_0 V_{n}, \quad V_{0} = 2, \quad V_{1} = c_1$$\
11+
If p is prime, then we have the congruence $$V_{p}\equiv V_{1}(mod\quad p)$$
12+
\
13+
Dougherty-Bliss and Zeilberger looked at these recently. They find that certain recurrent sequences produce primality tests for which the smallest pseudoprime is very large.
Binary file not shown.

0 commit comments

Comments
 (0)