Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions 13/umbraco-forms/installation/the-licensing-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,24 @@ The value contains the path of your custom license directory relative to the roo
{% hint style="warning" %}
This will also change the location for other Umbraco-related licenses in this project.
{% endhint %}

## Federal Information Processing Standards (FIPS) Compliant Environments

The algorithm used to decrypt Forms licenses is not supported on locked down FIPS compliant environments, such as those used in the defense industry.

If you are in this situation and unable to resolve it via configuration of the environment, please reach out to Umbraco support.

We have the possibility of generating and providing Forms licenses using alternate algorithms.

{% hint style="info" %}
You can use this configuration if you reference `Umbraco.Licensing` version `13.0.1` or higher.
{% endhint %}

Apply the following configuration with the appropriate algorithm - `DES` (the default), `TripleDES`, or `AES`:

```json
"Umbraco": {
"Licensing": {
"LicenseEncodeAndDecodeAlgorithm": "DES|TripleDES|AES"
},
``````