Research Article

Secure and Efficient Data Storage Operations by Using Intelligent Classification Technique and RSA Algorithm in IoT-Based Cloud Computing

Algorithm 1

Pseudo code of RSA.
(1)Start
(2)Choose P, Q where Prime = {P, Q}, P ≠ Q
(3)Calculate S {S = PQ}
(4)Calculate Φ (S), {Φ (S) = (P − 1) (Q − 1)}
(5)Choose Random W {gcd (Φ (n), W = 1)} and 1 < W < Φ (S)
(6)Calculate D, {d.e ≡ 1 modϕ (S)}
(7)Public key {W, n}
(8)Private Key {D, n}
(9)End