diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 21:04:29 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 21:04:29 +0700 |
commit | df5faf533f2ebbe1592eed22ebe6ee0b8f953bc7 (patch) | |
tree | 58c08da868f10e46059a404c7fcc14f894a4a757 | |
parent | Move bzip2 code into src (diff) | |
download | BouncyCastle.NET-ed25519-df5faf533f2ebbe1592eed22ebe6ee0b8f953bc7.tar.xz |
Change namespace for bzip2 code
-rw-r--r-- | crypto/src/bzip2/BZip2Constants.cs | 2 | ||||
-rw-r--r-- | crypto/src/bzip2/CBZip2InputStream.cs | 2 | ||||
-rw-r--r-- | crypto/src/bzip2/CBZip2OutputStream.cs | 2 | ||||
-rw-r--r-- | crypto/src/bzip2/CRC.cs | 2 | ||||
-rw-r--r-- | crypto/src/openpgp/PgpCompressedData.cs | 2 | ||||
-rw-r--r-- | crypto/src/openpgp/PgpCompressedDataGenerator.cs | 2 |
6 files changed, 6 insertions, 6 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 diff --git a/crypto/src/openpgp/PgpCompressedData.cs b/crypto/src/openpgp/PgpCompressedData.cs index c841b7474..fc7d200d0 100644 --- a/crypto/src/openpgp/PgpCompressedData.cs +++ b/crypto/src/openpgp/PgpCompressedData.cs @@ -1,6 +1,6 @@ using System.IO; -using Org.BouncyCastle.Apache.Bzip2; +using Org.BouncyCastle.Bzip2; using Org.BouncyCastle.Utilities.Zlib; namespace Org.BouncyCastle.Bcpg.OpenPgp diff --git a/crypto/src/openpgp/PgpCompressedDataGenerator.cs b/crypto/src/openpgp/PgpCompressedDataGenerator.cs index 51b645279..88a1070d1 100644 --- a/crypto/src/openpgp/PgpCompressedDataGenerator.cs +++ b/crypto/src/openpgp/PgpCompressedDataGenerator.cs @@ -1,7 +1,7 @@ using System; using System.IO; -using Org.BouncyCastle.Apache.Bzip2; +using Org.BouncyCastle.Bzip2; using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Zlib; |