Skip to content

jcdcdev/Umbraco.Community.DataProtection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

68 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Umbraco.Community.DataProtection

Umbraco Marketplace License NuGet Downloads Project Website

Simple ASP.NET Core Data Protection for Umbraco CMS.

Data protection keys are stored in the Umbraco database.

Quick Start

dotnet add package Umbraco.Community.DataProtection
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.DependencyInjection;

namespace Project.Web;

public class Composer : IComposer
{
    public void Compose(IUmbracoBuilder builder)
    {
        builder.AddUmbracoDataProtection();
    }
}

Contributing

Contributions to this package are most welcome! Please visit the Contributing page.

Acknowledgements (Thanks)