Skip to content

Commit 1f76215

Browse files
committed
Prevent leaking types.
1 parent e32132a commit 1f76215

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Provider/src/FirebirdSql.Data.External/RC4/ICipherParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Org.BouncyCastle.Crypto
55
/**
66
* all parameter classes implement this.
77
*/
8-
public interface ICipherParameters
8+
internal interface ICipherParameters
99
{
1010
}
1111
}

Provider/src/FirebirdSql.Data.External/RC4/IStreamCipher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Org.BouncyCastle.Crypto
44
{
55
/// <summary>The interface stream ciphers conform to.</summary>
6-
public interface IStreamCipher
6+
internal interface IStreamCipher
77
{
88
/// <summary>The name of the algorithm this cipher implements.</summary>
99
string AlgorithmName { get; }

Provider/src/FirebirdSql.Data.External/RC4/KeyParameter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Org.BouncyCastle.Crypto.Parameters
66
{
7-
public class KeyParameter
7+
internal class KeyParameter
88
: ICipherParameters
99
{
1010
private readonly byte[] key;

0 commit comments

Comments
 (0)