| For any p > 0, all integer solutions of 2x4 = z2p+1 will necessarily be of the general form x = An2k(n), n = 2p + 1, where the expression for k depends on n and A is an integer, which may be relative; z will then be of the form z = A42m(n). |
|
All distinct integer solutions (y/x = n/m any rational number) of x4 + y4 = z5 are of the form x = m(m4+n4)1+5vw5u, y = n(m4+n4)1+5vw5u, z = (m4+n4)1+4vw4u, m ≠ n, n, w non-negative integers, u and v integers. |
|
For any p > 0, all integer solutions of 2x4 = z2p+1 are of the form x = y = 2a + (2p + 1)tΠi=1r pi(2p+1)ui, z = 2b+4t Πi=1r pi4ui, t, r, ui integers ≥ 0, pi distinct odd primes. |
|
Given n and selecting an initial p (sufficiently large, congruent to 3 modulo 4 and such as gcd(n, p-1) = 1), the process begins with the secret number x, which is converted into a public identifier C (encrypted message); then, using the encryption key d, the resulting z is derived. Let’s summarize the three elements of the proposed implementation. - The theoretical structure of solutions of the form x = An2k(n), - The encryption function f(x) ≡ 2x4 (mod p), - The encryption mechanism, derived from Fermat's Little Theorem, z ≡ Cd (mod p). Problem: Given n, p and C (public data), find the unique value of z modulo p. We will have, successively, (x, p) → C ≡ 2x4 (mod p), (n, p) → d ≡ 1/n (mod p-1), (C, d) → z ≡ Cd (mod p). |