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 /crypto/src/openpgp | |
parent | Move bzip2 code into src (diff) | |
download | BouncyCastle.NET-ed25519-df5faf533f2ebbe1592eed22ebe6ee0b8f953bc7.tar.xz |
Change namespace for bzip2 code
Diffstat (limited to 'crypto/src/openpgp')
-rw-r--r-- | crypto/src/openpgp/PgpCompressedData.cs | 2 | ||||
-rw-r--r-- | crypto/src/openpgp/PgpCompressedDataGenerator.cs | 2 |
2 files changed, 2 insertions, 2 deletions
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; |