#ifndef RSATEST_H
#define RSATEST_H

/*!
\brief RSA tests for all rsa and associated classes.
*/
class rsatest
{
public:

  
  /** Small RSA example with maths library. */
  static int unittest01();
  /** Small RSA example with rsa classes. */
  static int unittest02();

  /** String and stream conversions written to files. */
  static void test01();

  /** Comparing sequential and random prime generation. */
  static void test02(int argc, char** argv);


};


#endif



