(MersenneTwister): moved to Cryptography namespace.

This commit is contained in:
morkt 2016-08-02 05:16:20 +04:00
parent 0ea84672d8
commit 36494147a5
6 changed files with 6 additions and 5 deletions

View File

@ -34,7 +34,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using System; using System;
namespace GameRes.Encryption namespace GameRes.Cryptography
{ {
public class Camellia public class Camellia
{ {

View File

@ -34,7 +34,7 @@ using Simias.Encryption;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using GameRes.Formats.Strings; using GameRes.Formats.Strings;
using GameRes.Formats.Properties; using GameRes.Formats.Properties;
using GameRes.Utility; using GameRes.Cryptography;
namespace GameRes.Formats.CatSystem namespace GameRes.Formats.CatSystem
{ {

View File

@ -28,6 +28,7 @@ using System.Collections.Generic;
using System.ComponentModel.Composition; using System.ComponentModel.Composition;
using System.IO; using System.IO;
using System.Security.Cryptography; using System.Security.Cryptography;
using GameRes.Cryptography;
using GameRes.Utility; using GameRes.Utility;
namespace GameRes.Formats.CsWare namespace GameRes.Formats.CsWare

View File

@ -30,6 +30,7 @@ using System.Windows.Media.Imaging;
using System.Windows.Media; using System.Windows.Media;
using GameRes.Utility; using GameRes.Utility;
using GameRes.Compression; using GameRes.Compression;
using GameRes.Cryptography;
namespace GameRes.Formats.ExHibit namespace GameRes.Formats.ExHibit
{ {

View File

@ -27,9 +27,8 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.Composition; using System.ComponentModel.Composition;
using System.IO; using System.IO;
using System.Linq;
using System.Text; using System.Text;
using GameRes.Encryption; using GameRes.Cryptography;
using GameRes.Utility; using GameRes.Utility;
namespace GameRes.Formats.Malie namespace GameRes.Formats.Malie

View File

@ -7,7 +7,7 @@
// C# port by morkt // C# port by morkt
// //
namespace GameRes.Utility namespace GameRes.Cryptography
{ {
public class MersenneTwister public class MersenneTwister
{ {