mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Rename namespace.
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
<ProjectGuid>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</ProjectGuid>
|
<ProjectGuid>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Checksums</RootNamespace>
|
<RootNamespace>Aaru.Checksums</RootNamespace>
|
||||||
<AssemblyName>Aaru.Checksums</AssemblyName>
|
<AssemblyName>Aaru.Checksums</AssemblyName>
|
||||||
<ReleaseVersion>$(Version)</ReleaseVersion>
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
||||||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
||||||
|
|||||||
@@ -32,9 +32,9 @@
|
|||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Implements the Adler-32 algorithm
|
/// Implements the Adler-32 algorithm
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
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>
|
/// <summary>Implements ReedSolomon and CRC32 algorithms as used by CD-ROM</summary>
|
||||||
public static class CdChecksums
|
public static class CdChecksums
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
public class CRC16CCITTContext : Crc16Context
|
public class CRC16CCITTContext : Crc16Context
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>Implements a CRC16 algorithm</summary>
|
/// <summary>Implements a CRC16 algorithm</summary>
|
||||||
public class Crc16Context : IChecksum
|
public class Crc16Context : IChecksum
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
public class CRC16IBMContext : Crc16Context
|
public class CRC16IBMContext : Crc16Context
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -32,9 +32,9 @@
|
|||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Implements a CRC32 algorithm
|
/// Implements a CRC32 algorithm
|
||||||
|
|||||||
@@ -32,9 +32,9 @@
|
|||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Implements a CRC64 algorithm
|
/// Implements a CRC64 algorithm
|
||||||
|
|||||||
@@ -34,9 +34,9 @@
|
|||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Implements the Fletcher-32 algorithm
|
/// Implements the Fletcher-32 algorithm
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Wraps up .NET MD5 implementation to a Init(), Update(), Final() context.
|
/// Wraps up .NET MD5 implementation to a Init(), Update(), Final() context.
|
||||||
|
|||||||
@@ -58,9 +58,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using DiscImageChef.Console;
|
using Aaru.Console;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Implements the Reed-Solomon algorithm
|
/// Implements the Reed-Solomon algorithm
|
||||||
|
|||||||
@@ -40,9 +40,9 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
public class Register : IPluginRegister
|
public class Register : IPluginRegister
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Wraps up .NET SHA1 implementation to a Init(), Update(), Final() context.
|
/// Wraps up .NET SHA1 implementation to a Init(), Update(), Final() context.
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Wraps up .NET SHA256 implementation to a Init(), Update(), Final() context.
|
/// Wraps up .NET SHA256 implementation to a Init(), Update(), Final() context.
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Wraps up .NET SHA384 implementation to a Init(), Update(), Final() context.
|
/// Wraps up .NET SHA384 implementation to a Init(), Update(), Final() context.
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Wraps up .NET SHA512 implementation to a Init(), Update(), Final() context.
|
/// Wraps up .NET SHA512 implementation to a Init(), Update(), Final() context.
|
||||||
|
|||||||
@@ -42,9 +42,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes.Interfaces;
|
using Aaru.CommonTypes.Interfaces;
|
||||||
|
|
||||||
namespace DiscImageChef.Checksums
|
namespace Aaru.Checksums
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Implements the SpamSum fuzzy hashing algorithm.
|
/// Implements the SpamSum fuzzy hashing algorithm.
|
||||||
|
|||||||
Reference in New Issue
Block a user