Research Article

Fast Parallel Molecular Algorithms for DNA-Based Computation: Solving the Elliptic Curve Discrete Logarithm Problem over 𝐺𝐹(2𝑛)

Algorithm 1

Procedure ParallelAdder ( 𝑇 0 , 𝑛 , 𝑝 , π‘ž , π‘Ÿ ) .
(1) For 𝑗 = 0 to 𝑛 βˆ’ 1
 (1a) 𝑇 1 = + ( 𝑇 0 , π‘₯ 1 𝑝 + 𝑗 ) and 𝑇 2 = βˆ’ ( 𝑇 0 , π‘₯ 1 𝑝 + 𝑗 )
 (1b) 𝑇 3 = + ( 𝑇 1 , π‘₯ 1 π‘ž + 𝑗 ) and 𝑇 4 = βˆ’ ( 𝑇 1 , π‘₯ 1 π‘ž + 𝑗 )
 (1c) 𝑇 5 = + ( 𝑇 2 , π‘₯ 1 π‘ž + 𝑗 ) and 𝑇 6 = βˆ’ ( 𝑇 2 , π‘₯ 1 π‘ž + 𝑗 )
 (1d) 𝑇 7 = βˆͺ ( 𝑇 4 , 𝑇 5 ) and 𝑇 8 = βˆͺ ( 𝑇 3 , 𝑇 6 )
 (1e) Append ( 𝑇 7 , π‘₯ 1 π‘Ÿ + 𝑗 ) and Append ( 𝑇 8 , π‘₯ 0 π‘Ÿ + 𝑗 )
 (1f) 𝑇 0 = βˆͺ ( 𝑇 7 , 𝑇 8 )
 EndFor
EndProcedure