|
| 1 | +// Copyright 2020 ONIXLabs |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +using System.IO; |
| 16 | +using System.Security.Cryptography; |
| 17 | +using Aes = System.Security.Cryptography.Aes; |
| 18 | + |
| 19 | +namespace OnixLabs.Security.Cryptography; |
| 20 | + |
| 21 | +/// <summary> |
| 22 | +/// Represents an in-memory data protection mechanism for sensitive, long-lived cryptographic data. |
| 23 | +/// </summary> |
| 24 | +internal sealed class ProtectedData |
| 25 | +{ |
| 26 | + private readonly byte[] key = Salt.CreateNonZero(32).ToByteArray(); |
| 27 | + private readonly byte[] iv = Salt.CreateNonZero(16).ToByteArray(); |
| 28 | + |
| 29 | + /// <summary> |
| 30 | + /// Encrypted the specified data. |
| 31 | + /// </summary> |
| 32 | + /// <param name="data">The data to encrypt.</param> |
| 33 | + /// <returns>Returns the encrypted data.</returns> |
| 34 | + public byte[] Encrypt(byte[] data) |
| 35 | + { |
| 36 | + Require(data.Length > 0, "Data must not be empty.", nameof(data)); |
| 37 | + |
| 38 | + using Aes algorithm = Aes.Create(); |
| 39 | + |
| 40 | + algorithm.Key = key; |
| 41 | + algorithm.IV = iv; |
| 42 | + algorithm.Padding = PaddingMode.PKCS7; |
| 43 | + |
| 44 | + ICryptoTransform transform = algorithm.CreateEncryptor(algorithm.Key, algorithm.IV); |
| 45 | + |
| 46 | + using MemoryStream memoryStream = new(); |
| 47 | + using CryptoStream cryptoStream = new(memoryStream, transform, CryptoStreamMode.Write); |
| 48 | + |
| 49 | + cryptoStream.Write(data, 0, data.Length); |
| 50 | + cryptoStream.FlushFinalBlock(); |
| 51 | + |
| 52 | + return memoryStream.ToArray(); |
| 53 | + } |
| 54 | + |
| 55 | + /// <summary> |
| 56 | + /// Decrypts the specified data. |
| 57 | + /// </summary> |
| 58 | + /// <param name="data">The data to decrypt.</param> |
| 59 | + /// <returns>Returns the decrypted data.</returns> |
| 60 | + public byte[] Decrypt(byte[] data) |
| 61 | + { |
| 62 | + Require(data.Length > 0, "Data must not be empty.", nameof(data)); |
| 63 | + |
| 64 | + using Aes algorithm = Aes.Create(); |
| 65 | + |
| 66 | + algorithm.Key = key; |
| 67 | + algorithm.IV = iv; |
| 68 | + algorithm.Padding = PaddingMode.PKCS7; |
| 69 | + |
| 70 | + ICryptoTransform transform = algorithm.CreateDecryptor(algorithm.Key, algorithm.IV); |
| 71 | + |
| 72 | + using MemoryStream memoryStream = new(data); |
| 73 | + using CryptoStream cryptoStream = new(memoryStream, transform, CryptoStreamMode.Read); |
| 74 | + using MemoryStream resultStream = new(); |
| 75 | + |
| 76 | + cryptoStream.CopyTo(resultStream); |
| 77 | + |
| 78 | + return resultStream.ToArray(); |
| 79 | + } |
| 80 | +} |
0 commit comments