> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/rdm/fr/knowledge-base/troubleshooting-articles/forticlient/fips-encryption.md).

# FIPS (chiffrement)

`System.invalidoperationexception: this implementation is not part of the windows platform FIPS validated cryptographic algorithms.`

Le problème pourrait être lié au mode FIPS activé.

Remote Desktop Manager utilise les algorithmes de chiffrement AES/Rijndael et de hachage SHA-256, qui sont implémentés par le Microsoft .NET Framework. Si la stratégie de sécurité locale de votre système impose des implémentations conformes à FIPS, Remote Desktop Manager ne peut pas s'exécuter. Par conséquent, vous recevrez ce message d'erreur.

### Solution 1

Pour corriger cette erreur, configurez la stratégie de sécurité locale de votre système afin d'autoriser les implémentations d'algorithmes non conformes à FIPS.

Voici les étapes à suivre :

1. Accédez à ***Panneau de configuration – Outils d'administration – Stratégie de sécurité locale – Ouvrir les stratégies locales – Options de sécurité***.
2. Désactivez l'option ***Chiffrement système : utilisez des algorithmes conformes FIPS pour le chiffrement, le hachage et la signature***.

Certains logiciels (p. ex., Cisco VPN Anyconnect) requièrent l'utilisation de FIPS. Si c'est votre cas, vous devez mettre en œuvre la solution alternative décrite ci-dessous.

### Solution 2

Dans le dossier d'installation de Remote Desktop Manager, créez un fichier texte nommé **RemoteDesktopManager.exe.config** contenant ce qui suit :

```
<configuration>
    <runtime>
        <enforceFIPSPolicy enabled="false"/>
    </runtime>
</configuration>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.devolutions.net/rdm/fr/knowledge-base/troubleshooting-articles/forticlient/fips-encryption.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
