(Blowfish.CreateDecryptor): new method.

This commit is contained in:
morkt 2016-10-09 01:27:20 +04:00
parent be433288b2
commit ffd0648b27

View File

@ -285,6 +285,11 @@ namespace GameRes.Cryptography
}
}
}
public ICryptoTransform CreateDecryptor ()
{
return new BlowfishDecryptor (this);
}
private uint F(uint x)
{