Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
Enclosed other auxiliary classes in "Common" namespace.
Browse files Browse the repository at this point in the history
Signed-off-by: IsNull <IsNull@securityvision.ch>
  • Loading branch information
Paris committed Apr 7, 2011
1 parent da3d882 commit 27efc06
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Rusty/Common/CRC32.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Security.Cryptography;

namespace IronAHK.Rusty
namespace IronAHK.Rusty.Common
{
/// <summary>
/// Adapted from http://tomkaminski.com/crc32-hashalgorithm-c-net
Expand Down
2 changes: 1 addition & 1 deletion Rusty/Common/ImageSearcher/CoordProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Drawing;
using System.Threading;

namespace IronAHK.Rusty
namespace IronAHK.Rusty.Common
{
/// <summary>
/// Create a global Instance of CoordProvider and use it multithreaded
Expand Down
2 changes: 1 addition & 1 deletion Rusty/Common/ImageSearcher/ImageFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Drawing;
using System.Threading;

namespace IronAHK.Rusty
namespace IronAHK.Rusty.Common
{
/// <summary>
/// Class which provides common search Methods to find a Color or a subimage in given Image.
Expand Down
2 changes: 1 addition & 1 deletion Rusty/Common/SimpleJson/Decode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace IronAHK.Rusty
namespace IronAHK.Rusty.Common
{
partial class SimpleJson
{
Expand Down
2 changes: 1 addition & 1 deletion Rusty/Common/SimpleJson/Encode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace IronAHK.Rusty
namespace IronAHK.Rusty.Common
{
partial class SimpleJson
{
Expand Down
2 changes: 1 addition & 1 deletion Rusty/Common/SimpleJson/SimpleJSON.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

namespace IronAHK.Rusty
namespace IronAHK.Rusty.Common
{
/// <summary>
/// Serialize JSON strings.
Expand Down
1 change: 1 addition & 0 deletions Rusty/Core/Json.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using IronAHK.Rusty.Common;

namespace IronAHK.Rusty
{
Expand Down
1 change: 1 addition & 0 deletions Rusty/Core/Screen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Drawing.Imaging;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using IronAHK.Rusty.Common;

namespace IronAHK.Rusty
{
Expand Down
2 changes: 1 addition & 1 deletion Rusty/Core/Security.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static byte[] TripleDES(object value, object key, bool decrypt = false)
public static long CRC32(object value)
{
var raw = ToByteArray(value);
var alg = new CRC32();
var alg = new Common.CRC32();
alg.ComputeHash(raw);
return alg.Value;
}
Expand Down

0 comments on commit 27efc06

Please sign in to comment.