Files
duplicati/Duplicati/Library/Encryption/AESEncryption.cs
T

165 lines
6.8 KiB
C#
Raw Normal View History

2025-01-07 09:40:39 +01:00
// Copyright (C) 2025, The Duplicati Team
// https://duplicati.com, hello@duplicati.com
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2024-06-04 17:27:18 +02:00
// DEALINGS IN THE SOFTWARE.
2024-02-28 15:45:30 +01:00
2009-01-14 17:29:30 +00:00
using System;
using System.Collections.Generic;
2010-06-19 21:08:21 +00:00
using System.IO;
2019-07-26 09:18:16 -04:00
using Duplicati.Library.Interface;
2009-01-14 17:29:30 +00:00
namespace Duplicati.Library.Encryption
{
/// <summary>
/// Implements AES encryption
/// </summary>
2013-05-05 17:07:24 +02:00
public class AESEncryption : EncryptionBase
2009-01-14 17:29:30 +00:00
{
2010-06-19 21:08:21 +00:00
/// <summary>
/// The key used to encrypt the data
/// </summary>
private readonly string m_key;
2010-06-19 21:08:21 +00:00
/// <summary>
/// The cached value for size overhead
/// </summary>
private static long m_cachedsizeoverhead = -1;
/// <summary>
/// Cached set of options for minimal header
/// </summary>
private static readonly SharpAESCrypt.EncryptionOptions m_minimalHeaderOptions = new(InsertCreatedByIdentifier: false, InsertTimeStamp: false, InsertPlaceholder: false);
/// <summary>
/// Cached set of options for decryption
/// </summary>
private static readonly SharpAESCrypt.DecryptionOptions m_decryptionOptions = new(IgnorePaddingBytes: Environment.GetEnvironmentVariable("AES_IGNORE_PADDING_BYTES") == "1");
/// <summary>
/// Options to use for encryption
/// </summary>
private readonly SharpAESCrypt.EncryptionOptions m_encryptionOptions;
2010-06-19 21:08:21 +00:00
/// <summary>
/// Default constructor, used to read file extension and supported commands
/// </summary>
public AESEncryption()
{
}
2009-01-14 17:29:30 +00:00
/// <summary>
/// Constructs a new AES encryption/decyption instance
/// </summary>
/// <param name="passphrase">The passphrase to use</param>
/// <param name="minimalheader">Flag controlling if the encryption is done with a minimal header</param>
public AESEncryption(string passphrase, bool minimalheader)
2009-01-14 17:29:30 +00:00
{
2019-07-26 09:18:16 -04:00
if (string.IsNullOrEmpty(passphrase))
2017-09-25 19:43:26 -07:00
throw new ArgumentException(Strings.AESEncryption.EmptyKeyError, nameof(passphrase));
2016-03-03 09:24:29 +01:00
2010-06-19 21:08:21 +00:00
m_key = passphrase;
m_encryptionOptions = minimalheader ? m_minimalHeaderOptions : default;
}
/// <summary>
/// Constructs a new AES encryption/decyption instance
/// </summary>
public AESEncryption(string passphrase, Dictionary<string, string> options)
: this(passphrase, false)
{
2010-06-19 21:08:21 +00:00
}
2009-01-14 17:29:30 +00:00
#region IEncryption Members
/// <summary>
/// The extension that the encryption implementation adds to the filename
/// </summary>
/// <value>The filename extension.</value>
2009-01-25 19:33:36 +00:00
public override string FilenameExtension { get { return "aes"; } }
/// <summary>
/// A localized description of the encryption module
/// </summary>
/// <value>The description.</value>
2011-01-12 18:59:01 +00:00
public override string Description { get { return string.Format(Strings.AESEncryption.Description_v2); } }
/// <summary>
/// A localized string describing the encryption module with a friendly name
/// </summary>
/// <value>The display name.</value>
2010-06-19 21:08:21 +00:00
public override string DisplayName { get { return Strings.AESEncryption.DisplayName; } }
/// <summary>
/// Dispose the specified disposing.
/// </summary>
/// <param name="disposing">If set to <c>true</c> disposing.</param>
protected override void Dispose(bool disposing) { }
2010-06-19 21:08:21 +00:00
/// <summary>
/// Returns the size in bytes of the overhead that will be added to a file of the given size when encrypted
/// </summary>
/// <param name="filesize">The size of the file to encrypt</param>
/// <returns>The size of the overhead in bytes</returns>
2010-06-19 21:08:21 +00:00
public override long SizeOverhead(long filesize)
{
if (m_cachedsizeoverhead != -1)
return m_cachedsizeoverhead;
2019-07-26 09:18:16 -04:00
2010-06-19 21:08:21 +00:00
//If we use 1, we trigger the blocksize.
//As the AES algorithm does not alter the size,
// the results are the same as for the real size,
// but a single byte encryption is much faster.
return m_cachedsizeoverhead = base.SizeOverhead(1);
2010-06-19 21:08:21 +00:00
}
/// <summary>
/// Encrypts the stream
/// </summary>
/// <param name="input">The target stream</param>
/// <returns>An encrypted stream that can be written to</returns>
2010-06-19 21:08:21 +00:00
public override Stream Encrypt(Stream input)
=> new SharpAESCrypt.EncryptingStream(m_key, input, m_encryptionOptions);
2009-01-25 19:33:36 +00:00
/// <summary>
/// Decrypts the stream to the output stream
/// </summary>
/// <param name="input">The encrypted stream</param>
/// <returns>The unencrypted stream</returns>
2010-06-19 21:08:21 +00:00
public override Stream Decrypt(Stream input)
=> new SharpAESCrypt.DecryptingStream(m_key, input, m_decryptionOptions);
2009-01-14 17:29:30 +00:00
/// <summary>
/// Gets a list of supported commandline arguments
/// </summary>
/// <value>The supported commands.</value>
2010-06-19 21:08:21 +00:00
public override IList<ICommandLineArgument> SupportedCommands
2024-06-04 17:27:18 +02:00
=> new List<ICommandLineArgument>([
new CommandLineArgument(
"aes-set-threadlevel",
CommandLineArgument.ArgumentType.String,
Strings.AESEncryption.AessetthreadlevelShort,
Strings.AESEncryption.AessetthreadlevelLong,
"",
null,
null,
Strings.AESEncryption.AessetthreadlevelDeprecated
),
]);
2009-01-14 17:29:30 +00:00
2010-06-19 21:08:21 +00:00
#endregion
2009-01-14 17:29:30 +00:00
}
}