Files
PdfPig/src/UglyToad.PdfPig/Encryption/NoOpEncryptionHandler.cs

18 lines
410 B
C#

namespace UglyToad.PdfPig.Encryption
{
using Tokens;
internal class NoOpEncryptionHandler : IEncryptionHandler
{
public static NoOpEncryptionHandler Instance { get; } = new NoOpEncryptionHandler();
private NoOpEncryptionHandler()
{
}
public IToken Decrypt(IndirectReference reference, IToken token)
{
return token;
}
}
}