aspnet/DataProtection

Secure way to store to a shared store

Closed this issue · 2 comments

How is this #197 going? Was looking around as I'd like to encrypt our keys stored in redis with a cert.
Came across https://github.com/tillig/DataProtection but it's old, is there already a canonical way to do this in the framework?

Certs work cross platform in 2.0, so it'd work for you. Protection is separate to storage, so you just layer it onto the Redis store which is https://github.com/aspnet/DataProtection/tree/dev/src/Microsoft.AspNetCore.DataProtection.Redis

Alright great!