CryptoByLeo/Src/RSA/Def.mqh

29 lines
1.2 KiB
MQL5
Raw Permalink Normal View History

2026-08-23 08:35:14 -05:00
//+------------------------------------------------------------------+
//| 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
2026-08-23 19:36:33 -05:00
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
// Includes generales para RSA
2026-08-23 08:35:14 -05:00
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#include <TSN\\BInt\\U.mqh>
2026-08-24 09:57:30 -05:00
// padders cipher
#include "..\\Padding\\OAEP\\Main.mqh"
// normal
#include "..\\Padding\\PKCS1v15\\Main.mqh"
#include "..\\Padding\\PSS\\Main.mqh"
2026-08-23 08:35:14 -05:00
#endif // CRYPTOBYLEO_SRC_RSA_DEF_MQH