-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPropertyEncryptionJsonConverter.cs
More file actions
66 lines (52 loc) · 2.85 KB
/
Copy pathPropertyEncryptionJsonConverter.cs
File metadata and controls
66 lines (52 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using Microsoft.Extensions.Configuration;
using System.Linq;
using System.Reflection;
namespace System.Text.Json.Serialization.Encryption
{
public class PropertyEncryptionJsonConverter<T> : JsonConverter<T>
{
private readonly IConfiguration _configuration;
public PropertyEncryptionJsonConverter(IConfiguration configuration)
{
_configuration = configuration;
}
public override bool CanConvert(Type typeToConvert)
{
return typeof(T).IsAssignableFrom(typeToConvert);
}
public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
var obj = JsonSerializer.Deserialize(ref reader, typeToConvert);
var propertiesWithEncryptedAttribute = typeToConvert.GetProperties(BindingFlags.Public | BindingFlags.Instance)
.Where(p => p.GetCustomAttributes(typeof(JsonEncryptAttribute), false).Count() == 1);
foreach (var propertyWithEncryptedAttribute in propertiesWithEncryptedAttribute)
{
var encryptionKeyLookup = propertyWithEncryptedAttribute.GetCustomAttribute<JsonEncryptAttribute>().EncryptionKeyConfigurationPath;
var encryptionKey = _configuration.GetSection(encryptionKeyLookup).Value;
var valueToDecrypt = (string)propertyWithEncryptedAttribute.GetValue(obj);
if (!string.IsNullOrWhiteSpace(valueToDecrypt))
{
var decryptedValue = AesStringEncryption.Decrypt(valueToDecrypt, encryptionKey);
propertyWithEncryptedAttribute.SetValue(obj, decryptedValue);
}
}
return (T)obj;
}
public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
{
var propertiesWithEncryptedAttribute = value.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance)
.Where(p => p.GetCustomAttributes(typeof(JsonEncryptAttribute), false).Count() == 1);
foreach (var propertyWithEncryptedAttribute in propertiesWithEncryptedAttribute)
{
var encryptionKeyLookup = propertyWithEncryptedAttribute.GetCustomAttribute<JsonEncryptAttribute>().EncryptionKeyConfigurationPath;
var encryptionKey = _configuration.GetSection(encryptionKeyLookup).Value;
var valueToEncrypt = (string)propertyWithEncryptedAttribute.GetValue(value);
if (!string.IsNullOrWhiteSpace(valueToEncrypt)) {
var encryptedValue = AesStringEncryption.Encrypt(valueToEncrypt, encryptionKey);
propertyWithEncryptedAttribute.SetValue(value, encryptedValue);
}
}
JsonSerializer.Serialize(writer, value, value.GetType());
}
}
}