Myrmex provides a multi-region, independent environment designed to meet the highest security and compliance standards. Each region operates autonomously, with no data sharing between them, ensuring complete segregation of information. This feature brings significant benefits, especially when meeting government regulations or compliance requirements specific to certain countries or sectors.
In addition to separation by region, Myrmex ensures that each customer’s data is isolated in dedicated tenants. This approach ensures that customer information is stored exclusively in the appropriate scope, preventing unauthorized access and strengthening protection against data leaks.
The Myrmex Security Platform implements a security model based on the Zero Trust paradigm, ensuring that each device continuously proves its legitimacy. To protect communication and device registration, Myrmex Endpoint Security uses cutting-edge technologies, including:
Asymmetric encryption (RSA 4096 bits): For authentication and initial key exchange
Symmetric encryption (AES-256-GCM): To ensure the confidentiality and integrity of transmitted data
Secure transport (TLS 1.3): To protect against interception and man-in-the-middle attacks
These layers of protection ensure that only authorized devices can communicate with the platform confidentially and securely.
Always encrypt sensitive data both in transit and at rest:
Copy
from myrmex.security import DataEncryption# Encrypt data at restencryption = DataEncryption()encrypted_data = encryption.encrypt_data(sensitive_data, encryption_key=YOUR_KEY, algorithm="AES-256-GCM")