forked from nique_372/CryptoByLeo
29 lines
No EOL
1.2 KiB
MQL5
29 lines
No EOL
1.2 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| Def.mqh |
|
|
//| Copyright 2026, Niquel Mendoza |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2026, Niquel Mendoza"
|
|
#property link "https://www.mql5.com"
|
|
#property strict
|
|
|
|
#ifndef CRYPTOBYLEO_SRC_RSA_DEF_MQH
|
|
#define CRYPTOBYLEO_SRC_RSA_DEF_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
// Includes generales para RSA
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#include <TSN\\BInt\\U.mqh>
|
|
|
|
// padders cipher
|
|
#include "..\\Padding\\OAEP\\Main.mqh"
|
|
// normal
|
|
#include "..\\Padding\\PKCS1v15\\Main.mqh"
|
|
#include "..\\Padding\\PSS\\Main.mqh"
|
|
|
|
#endif // CRYPTOBYLEO_SRC_RSA_DEF_MQH |