You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zero config [ASP.NET Core Data Protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/introduction?view=aspnetcore-8.0) for Umbraco CMS.
9
+
10
+
Data protection keys are stored in the Umbraco database.
11
+
12
+
## Quick Start
13
+
14
+
### Install
15
+
```csharp
16
+
dotnetaddpackageUmbraco.Community.DataProtection
17
+
```
18
+
19
+
### Configure
20
+
```csharp
21
+
usingUmbraco.Cms.Core.Composing;
22
+
usingUmbraco.Cms.Core.DependencyInjection;
23
+
24
+
namespaceProject.Web;
25
+
26
+
publicclassComposer : IComposer
27
+
{
28
+
publicvoidCompose(IUmbracoBuilderbuilder)
29
+
{
30
+
builder.AddUmbracoDataProtection();
31
+
}
32
+
}
33
+
```
34
+
8
35
## Contributing
9
36
10
-
Contributions to this package are most welcome! Please read the [Contributing Guidelines](CONTRIBUTING.md).
37
+
Contributions to this package are most welcome! Please read the [Contributing Guidelines](https://github.com/jcdcdev/Umbraco.Community.DataProtection/blob/main/.github/CONTRIBUTING.md).
0 commit comments