Rename namespace.

This commit is contained in:
2020-02-27 00:33:23 +00:00
parent 223ccea7f0
commit d350a44632
17 changed files with 31 additions and 31 deletions

View File

@@ -6,7 +6,7 @@
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Checksums</RootNamespace>
<RootNamespace>Aaru.Checksums</RootNamespace>
<AssemblyName>Aaru.Checksums</AssemblyName>
<ReleaseVersion>$(Version)</ReleaseVersion>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>

View File

@@ -32,9 +32,9 @@
using System.IO;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Implements the Adler-32 algorithm

View File

@@ -33,9 +33,9 @@
using System;
using System.Collections.Generic;
using DiscImageChef.Console;
using Aaru.Console;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>Implements ReedSolomon and CRC32 algorithms as used by CD-ROM</summary>
public static class CdChecksums

View File

@@ -1,4 +1,4 @@
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
public class CRC16CCITTContext : Crc16Context
{

View File

@@ -33,9 +33,9 @@
using System.IO;
using System.Linq;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>Implements a CRC16 algorithm</summary>
public class Crc16Context : IChecksum

View File

@@ -1,4 +1,4 @@
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
public class CRC16IBMContext : Crc16Context
{

View File

@@ -32,9 +32,9 @@
using System.IO;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Implements a CRC32 algorithm

View File

@@ -32,9 +32,9 @@
using System.IO;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Implements a CRC64 algorithm

View File

@@ -34,9 +34,9 @@
using System.IO;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Implements the Fletcher-32 algorithm

View File

@@ -33,9 +33,9 @@
using System.IO;
using System.Security.Cryptography;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Wraps up .NET MD5 implementation to a Init(), Update(), Final() context.

View File

@@ -58,9 +58,9 @@
*/
using System;
using DiscImageChef.Console;
using Aaru.Console;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Implements the Reed-Solomon algorithm

View File

@@ -40,9 +40,9 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
public class Register : IPluginRegister
{

View File

@@ -33,9 +33,9 @@
using System.IO;
using System.Security.Cryptography;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Wraps up .NET SHA1 implementation to a Init(), Update(), Final() context.

View File

@@ -33,9 +33,9 @@
using System.IO;
using System.Security.Cryptography;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Wraps up .NET SHA256 implementation to a Init(), Update(), Final() context.

View File

@@ -33,9 +33,9 @@
using System.IO;
using System.Security.Cryptography;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Wraps up .NET SHA384 implementation to a Init(), Update(), Final() context.

View File

@@ -33,9 +33,9 @@
using System.IO;
using System.Security.Cryptography;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Wraps up .NET SHA512 implementation to a Init(), Update(), Final() context.

View File

@@ -42,9 +42,9 @@
using System;
using System.Runtime.CompilerServices;
using System.Text;
using DiscImageChef.CommonTypes.Interfaces;
using Aaru.CommonTypes.Interfaces;
namespace DiscImageChef.Checksums
namespace Aaru.Checksums
{
/// <summary>
/// Implements the SpamSum fuzzy hashing algorithm.