#include "../../../include/encryption/Paillier/Paillier.hpp"
#include "../../../include/encryption/Paillier/keys/Paillier_private_key.hpp"
#include "../../../include/encryption/Paillier/keys/Paillier_public_key.hpp"
#include "../../../include/filesystem/filesystemCommon.h"
#include "../../../include/filesystem/filesystemPGM.h"
#include <cctype>
#include <fstream>
#include <string>
#include <string_view>
|
bool | isPrime (int n, int i=2) |
| Vérifier si n est un nombre premier.
|
|
uint64_t | checkNumbersArgument (string pos, char *arg) |
|
bool | endsWith (const std::string &str, const std::string &suffix) |
|
int | main (int argc, char **argv) |
|
◆ checkNumbersArgument()
uint64_t checkNumbersArgument |
( |
string | pos, |
|
|
char * | arg ) |
Vérification de l'argument en paramètre, afin de voir si c'est bel et bien un nombre et qu'il est premier.
- Parameters
-
- Authors
- Katia Auxilien
- Date
- 30 April 2024
◆ endsWith()
bool endsWith |
( |
const std::string & | str, |
|
|
const std::string & | suffix ) |
Vérification de l'argument en paramètre, afin de voir si c'est bel et bien un nom de fichier terminant par .pgm.
- Parameters
-
const | std::string &str |
const | std::string &suffix |
- Authors
- Katia Auxilien
- Date
- 30 April 2024
◆ isPrime()
bool isPrime |
( |
int | n, |
|
|
int | i = 2 ) |
Vérifier si n est un nombre premier.
- Parameters
-
- Authors
- Katia Auxilien
- Date
- 30 April 2024
◆ main()
int main |
( |
int | argc, |
|
|
char ** | argv ) |