Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove reflections in POIFS.Crypt #1160

Merged
merged 2 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 38 additions & 11 deletions main/POIFS/Crypt/EncryptionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ limitations under the License.
namespace NPOI.POIFS.Crypt
{
using System;
using System.Reflection;
using System.Diagnostics.CodeAnalysis;
using System.Net.Security;

public class EncryptionInfo
{
Expand Down Expand Up @@ -292,23 +293,49 @@ EncryptionMode encryptionMode
_encryptor = eib.GetEncryptor();
}

// REMOVE-REFLECTION: Remove reflections here will prevent NPOI from creating custom encryptors.
// Is it OK? Remove reflection-related code for now.
// It might be better to move Agile classes definition into this library. Now it's defined in NPOI.OOXML.Core.
protected static IEncryptionInfoBuilder GetBuilder(EncryptionMode encryptionMode)
{
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
Type t = null;
foreach (Assembly assembly in assemblies)
switch (encryptionMode.Builder)
{
t = assembly.GetType(encryptionMode.Builder);
if (t != null)
case EncryptionMode.BuilderNameBinaryRC4:
return new BinaryRC4.BinaryRC4EncryptionInfoBuilder();
case EncryptionMode.BuilderNameCryptoAPI:
return new CryptoAPI.CryptoAPIEncryptionInfoBuilder();
case EncryptionMode.BuilderNameStandard:
return new Standard.StandardEncryptionInfoBuilder();
case EncryptionMode.BuilderNameAgile:
// return new Agile.AgileEncryptionInfoBuilder();
karakasa marked this conversation as resolved.
Show resolved Hide resolved
// TODO
IEncryptionInfoBuilder instance = CreateAgileInstanceFallback();
if (instance is not null)
return instance;
break;
}
if (t == null)

throw new EncryptedDocumentException("Not found type " + encryptionMode.Builder);
}

private static Type AgileEncrpytionInfo;

#if NET6_0_OR_GREATER
[RequiresUnreferencedCode("Agile must be dynamically loaded from NPOI.OOXML. TODO.")]
#endif
private static IEncryptionInfoBuilder CreateAgileInstanceFallback()
{
if (AgileEncrpytionInfo is null)
{
throw new EncryptedDocumentException("Not found type " + encryptionMode.Builder);
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
if ((AgileEncrpytionInfo = assembly.GetType(EncryptionMode.BuilderNameAgile)) != null)
break;
}
IEncryptionInfoBuilder eib = null;
eib = (IEncryptionInfoBuilder)t.Assembly.CreateInstance(encryptionMode.Builder);
return eib;

if (AgileEncrpytionInfo is null)
return null;

return (IEncryptionInfoBuilder)Activator.CreateInstance(AgileEncrpytionInfo);
}

private int _versionMajor;
Expand Down
13 changes: 9 additions & 4 deletions main/POIFS/Crypt/EncryptionMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,19 @@ namespace NPOI.POIFS.Crypt
*/
public class EncryptionMode
{
public const string BuilderNameBinaryRC4 = "NPOI.POIFS.Crypt.BinaryRC4.BinaryRC4EncryptionInfoBuilder";
public const string BuilderNameCryptoAPI = "NPOI.POIFS.Crypt.CryptoAPI.CryptoAPIEncryptionInfoBuilder";
public const string BuilderNameStandard = "NPOI.POIFS.Crypt.Standard.StandardEncryptionInfoBuilder";
public const string BuilderNameAgile = "NPOI.POIFS.Crypt.Agile.AgileEncryptionInfoBuilder";

/* @see <a href="http://msdn.microsoft.com/en-us/library/dd907466(v=office.12).aspx">2.3.6 Office Binary Document RC4 Encryption</a> */
public static readonly EncryptionMode BinaryRC4 = new EncryptionMode("NPOI.POIFS.Crypt.BinaryRC4.BinaryRC4EncryptionInfoBuilder", 1, 1, 0x0);
public static readonly EncryptionMode BinaryRC4 = new EncryptionMode(BuilderNameBinaryRC4, 1, 1, 0x0);
/* @see <a href="http://msdn.microsoft.com/en-us/library/dd905225(v=office.12).aspx">2.3.5 Office Binary Document RC4 CryptoAPI Encryption</a> */
public static readonly EncryptionMode CryptoAPI = new EncryptionMode("NPOI.POIFS.Crypt.CryptoAPI.CryptoAPIEncryptionInfoBuilder", 4, 2, 0x04);
public static readonly EncryptionMode CryptoAPI = new EncryptionMode(BuilderNameCryptoAPI, 4, 2, 0x04);
/* @see <a href="http://msdn.microsoft.com/en-us/library/dd906097(v=office.12).aspx">2.3.4.5 \EncryptionInfo Stream (Standard Encryption)</a> */
public static readonly EncryptionMode Standard = new EncryptionMode("NPOI.POIFS.Crypt.Standard.StandardEncryptionInfoBuilder", 4, 2, 0x24);
public static readonly EncryptionMode Standard = new EncryptionMode(BuilderNameStandard, 4, 2, 0x24);
/* @see <a href="http://msdn.microsoft.com/en-us/library/dd925810(v=office.12).aspx">2.3.4.10 \EncryptionInfo Stream (Agile Encryption)</a> */
public static readonly EncryptionMode Agile = new EncryptionMode("NPOI.POIFS.Crypt.Agile.AgileEncryptionInfoBuilder", 4, 4, 0x40);
public static readonly EncryptionMode Agile = new EncryptionMode(BuilderNameAgile, 4, 4, 0x40);


public string Builder { get; private set; }
Expand Down
Loading