mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
18 lines
410 B
C#
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;
|
|
}
|
|
}
|
|
} |