The security of the RSA algorithm depends on two mathematic problems: the problem of factoring very large numbers, p and q, and the ____ problem.

A. RSA
B. ElGamal
C. Diffie-Hellman
D. discrete logarithm

Answer: A

Computer Science & Information Technology

You might also like to view...

Extend the following class definition so it overloads the input and output operators.

``` class Vect { public: Vect () {} Vect ( double, double ); private: double r; // magnitude double theta; // direction (radians) }; // // Constructor 2: Initializes all components // Vect :: Vect( double vectMag, double vectDir ) { r = vectMag; theta = vectDir; } ```

Computer Science & Information Technology

Digital forensics operations are often ____.

A. inhouse B. contracted C. permanent D. outsourced

Computer Science & Information Technology