36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.AspNetCore.DataProtection;
|
|
using Microsoft.AspNetCore.DataProtection.StackExchangeRedis;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using StackExchange.Redis;
|
|
|
|
namespace RedisSample
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
// Connect
|
|
var redis = ConnectionMultiplexer.Connect("localhost:6379");
|
|
|
|
// Configure
|
|
using (var services = new ServiceCollection()
|
|
.AddLogging(o => o.AddConsole().SetMinimumLevel(LogLevel.Debug))
|
|
.AddDataProtection()
|
|
.PersistKeysToStackExchangeRedis(redis, "DataProtection-Keys")
|
|
.Services
|
|
.BuildServiceProvider())
|
|
{
|
|
// Run a sample payload
|
|
var protector = services.GetDataProtector("sample-purpose");
|
|
var protectedData = protector.Protect("Hello world!");
|
|
Console.WriteLine(protectedData);
|
|
}
|
|
}
|
|
}
|
|
}
|