Botan  1.11.15
Functions
std Namespace Reference

Functions

template<>
void swap< Botan::BigInt > (Botan::BigInt &x, Botan::BigInt &y)
template<>
void swap< Botan::CurveGFp > (Botan::CurveGFp &curve1, Botan::CurveGFp &curve2) noexcept
template<>
void swap< Botan::PointGFp > (Botan::PointGFp &x, Botan::PointGFp &y)

Function Documentation

template<>
void std::swap< Botan::BigInt > ( Botan::BigInt x,
Botan::BigInt y 
) [inline]

Definition at line 601 of file bigint.h.

References x, and y.

   {
   x.swap(y);
   }
template<>
void std::swap< Botan::CurveGFp > ( Botan::CurveGFp curve1,
Botan::CurveGFp curve2 
) [inline]

Definition at line 189 of file curve_gfp.h.

   {
   curve1.swap(curve2);
   }
template<>
void std::swap< Botan::PointGFp > ( Botan::PointGFp x,
Botan::PointGFp y 
) [inline]

Definition at line 278 of file point_gfp.h.

References Botan::PointGFp::swap().

   { x.swap(y); }