1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

manage data protection keys with azure and enc

This commit is contained in:
Kyle Spearrin
2017-03-23 22:02:55 -04:00
parent 47477f6ca5
commit ca9aa40873
4 changed files with 23 additions and 0 deletions

View File

@ -11,6 +11,7 @@
public virtual PushSettings Push { get; set; } = new PushSettings();
public virtual StorageSettings Storage { get; set; } = new StorageSettings();
public virtual IdentityServerSettings IdentityServer { get; set; } = new IdentityServerSettings();
public virtual DataProtectionSettings DataProtection { get; set; } = new DataProtectionSettings();
public virtual DocumentDbSettings DocumentDb { get; set; } = new DocumentDbSettings();
public class SqlServerSettings
@ -49,6 +50,11 @@
public string CertificateThumbprint { get; set; }
}
public class DataProtectionSettings
{
public string CertificateThumbprint { get; set; }
}
public class DocumentDbSettings
{
public string Uri { get; set; }