scclib
Stable Cloud Computing C++ Library
|
Big number arithmetic. More...
#include <string>
#include <ostream>
#include <memory>
Go to the source code of this file.
Classes | |
class | scc::crypto::Bignum |
Big number. More... | |
Functions | |
void | scc::crypto::PrintTo (const Bignum &, std::ostream *) |
Googletest printer. | |
std::ostream & | operator<< (std::ostream &, const scc::crypto::Bignum &) |
Print the bignum to a stream. | |
scc::crypto::Bignum | exp (const scc::crypto::Bignum &, const scc::crypto::Bignum &) |
Exponent helper. | |
scc::crypto::Bignum | exp (const scc::crypto::Bignum &, uint32_t) |
Exponent helper. | |
scc::crypto::Bignum | gcd (const scc::crypto::Bignum &, const scc::crypto::Bignum &) |
Greatest common divisor helper. | |
scc::crypto::Bignum | gcd (const scc::crypto::Bignum &, uint32_t) |
Greatest common divisor helper. | |
Big number arithmetic.
Definition in file bignum.h.