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) {