Content deleted Content added
No edit summary |
|||
Line 9:
== Fermat's Factorization Running Time ==
Let N = pq
Case1: If 'n' is odd then p should be (n(n-4) + 7)/4 and q should be (n(n+4) + 7)/4
Line 18 ⟶ 17:
Case3: If 'n' is even & m = n/2 is also even then p should be (m - 1)^2 and q should be (m + 1)^2
So that N can be easily factorizable using Fermat Factorization method. i.e., Best Case Scenario.
Example1. let
Note:
Line 25:
Conclusion:
Hence irrespective of the difference between factors there exist Best Fermat Factors, so that factorization complexity is easy. The logic that odd composite with least difference will be factored easily and large difference would factored hardly is wrong. Hardness is depends upon the how much the factors are deviated from the Best Fermat Factors. <small><span class="autosigned">— Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:Yourskadhir|Yourskadhir]] ([[User talk:Yourskadhir|talk]] • [[Special:Contributions/Yourskadhir|contribs]]) 01:15, 2 December 2012 (UTC)</span></small><!-- Template:Unsigned --> <!--Autosigned by SineBot-->
== Mod 16 optimization ==
|