summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-03-08 14:02:22 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-03-08 14:02:22 +0700
commit44835a34da35bdab76c621ad26f741afd31185aa (patch)
tree40bf589b165c9bb6590821fa0723f1761d913668
parentAdd DLExternal and use for parsing (diff)
downloadBouncyCastle.NET-ed25519-44835a34da35bdab76c621ad26f741afd31185aa.tar.xz
Mark explicitly internal
-rw-r--r--crypto/src/asn1/DefiniteLengthInputStream.cs2
-rw-r--r--crypto/src/asn1/IndefiniteLengthInputStream.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/DefiniteLengthInputStream.cs b/crypto/src/asn1/DefiniteLengthInputStream.cs
index 89f0d5a62..5f2ecbabc 100644
--- a/crypto/src/asn1/DefiniteLengthInputStream.cs
+++ b/crypto/src/asn1/DefiniteLengthInputStream.cs
@@ -5,7 +5,7 @@ using Org.BouncyCastle.Utilities.IO;
 
 namespace Org.BouncyCastle.Asn1
 {
-    class DefiniteLengthInputStream
+    internal class DefiniteLengthInputStream
         : LimitedInputStream
     {
 		private static readonly byte[] EmptyBytes = new byte[0];
diff --git a/crypto/src/asn1/IndefiniteLengthInputStream.cs b/crypto/src/asn1/IndefiniteLengthInputStream.cs
index e192e9e8b..effd3f3da 100644
--- a/crypto/src/asn1/IndefiniteLengthInputStream.cs
+++ b/crypto/src/asn1/IndefiniteLengthInputStream.cs
@@ -3,7 +3,7 @@ using System.IO;
 
 namespace Org.BouncyCastle.Asn1
 {
-	class IndefiniteLengthInputStream
+	internal class IndefiniteLengthInputStream
 		: LimitedInputStream
 	{
         private int _lookAhead;