summary refs log tree commit diff
path: root/crypto/src/bzip2
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@gmail.com>2022-06-22 21:04:29 +0700
committerPeter Dettman <peter.dettman@gmail.com>2022-06-22 21:04:29 +0700
commitdf5faf533f2ebbe1592eed22ebe6ee0b8f953bc7 (patch)
tree58c08da868f10e46059a404c7fcc14f894a4a757 /crypto/src/bzip2
parentMove bzip2 code into src (diff)
downloadBouncyCastle.NET-ed25519-df5faf533f2ebbe1592eed22ebe6ee0b8f953bc7.tar.xz
Change namespace for bzip2 code
Diffstat (limited to 'crypto/src/bzip2')
-rw-r--r--crypto/src/bzip2/BZip2Constants.cs2
-rw-r--r--crypto/src/bzip2/CBZip2InputStream.cs2
-rw-r--r--crypto/src/bzip2/CBZip2OutputStream.cs2
-rw-r--r--crypto/src/bzip2/CRC.cs2
4 files changed, 4 insertions, 4 deletions
diff --git a/crypto/src/bzip2/BZip2Constants.cs b/crypto/src/bzip2/BZip2Constants.cs
index d238c5b76..81db7fa57 100644
--- a/crypto/src/bzip2/BZip2Constants.cs
+++ b/crypto/src/bzip2/BZip2Constants.cs
@@ -24,7 +24,7 @@
 
 using System;
 
-namespace Org.BouncyCastle.Apache.Bzip2
+namespace Org.BouncyCastle.Bzip2
 {
     /**
     * Base class for both the compress and decompress classes.
diff --git a/crypto/src/bzip2/CBZip2InputStream.cs b/crypto/src/bzip2/CBZip2InputStream.cs
index c3125a4e7..b73e52a01 100644
--- a/crypto/src/bzip2/CBZip2InputStream.cs
+++ b/crypto/src/bzip2/CBZip2InputStream.cs
@@ -29,7 +29,7 @@ using System.IO;
 using Org.BouncyCastle.Utilities;
 using Org.BouncyCastle.Utilities.IO;
 
-namespace Org.BouncyCastle.Apache.Bzip2
+namespace Org.BouncyCastle.Bzip2
 {
 	/**
     * An input stream that decompresses from the BZip2 format (with the file
diff --git a/crypto/src/bzip2/CBZip2OutputStream.cs b/crypto/src/bzip2/CBZip2OutputStream.cs
index 262a52f84..33013b0d9 100644
--- a/crypto/src/bzip2/CBZip2OutputStream.cs
+++ b/crypto/src/bzip2/CBZip2OutputStream.cs
@@ -30,7 +30,7 @@ using System.IO;
 using Org.BouncyCastle.Utilities;
 using Org.BouncyCastle.Utilities.IO;
 
-namespace Org.BouncyCastle.Apache.Bzip2
+namespace Org.BouncyCastle.Bzip2
 {
 	/**
     * An output stream that compresses into the BZip2 format (with the file
diff --git a/crypto/src/bzip2/CRC.cs b/crypto/src/bzip2/CRC.cs
index a66340e22..70d05e084 100644
--- a/crypto/src/bzip2/CRC.cs
+++ b/crypto/src/bzip2/CRC.cs
@@ -27,7 +27,7 @@ using System.Diagnostics;
 
 using Org.BouncyCastle.Utilities;
 
-namespace Org.BouncyCastle.Apache.Bzip2
+namespace Org.BouncyCastle.Bzip2
 {
     /**
     * A simple class the hold and calculate the CRC for sanity checking