From ffd0648b27aae20741d307b7bbd3dd9fdb590565 Mon Sep 17 00:00:00 2001 From: morkt Date: Sun, 9 Oct 2016 01:27:20 +0400 Subject: [PATCH] (Blowfish.CreateDecryptor): new method. --- ArcFormats/Blowfish.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ArcFormats/Blowfish.cs b/ArcFormats/Blowfish.cs index 78722102..04b938f7 100644 --- a/ArcFormats/Blowfish.cs +++ b/ArcFormats/Blowfish.cs @@ -285,6 +285,11 @@ namespace GameRes.Cryptography } } } + + public ICryptoTransform CreateDecryptor () + { + return new BlowfishDecryptor (this); + } private uint F(uint x) {