cryptafinity lib : remove extraneous qualification MathTools:: .
git-svn-id: https://websvn.glenux.net/svn/Upoc/cryptaffinity/trunk@1335 eaee96b3-f302-0410-b096-c6cfd47f7835
This commit is contained in:
parent
1278cde8cd
commit
e1d0cba489
1 changed files with 4 additions and 3 deletions
|
@ -5,17 +5,18 @@
|
||||||
#include "cryptafinity_iface.hh"
|
#include "cryptafinity_iface.hh"
|
||||||
|
|
||||||
namespace LibCryptAfinity {
|
namespace LibCryptAfinity {
|
||||||
|
|
||||||
class MathTools {
|
class MathTools {
|
||||||
private:
|
private:
|
||||||
std::vector<int> MathTools::pgcd_real(int * reste, int * quotient, int * coef_first, int * coef_second, int pas);
|
std::vector<int> pgcd_real(int * reste, int * quotient, int * coef_first, int * coef_second, int pas);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int pgcd(int a, int b);
|
int pgcd(int a, int b);
|
||||||
int ppcm(int a, int b);
|
int ppcm(int a, int b);
|
||||||
|
|
||||||
std::vector<int> MathTools::pgcd_mod(int a, int b);
|
std::vector<int> pgcd_mod(int a, int b);
|
||||||
|
|
||||||
int MathTools::inverse(int a, int modulo);
|
int inverse(int a, int modulo);
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue