summary refs log tree commit diff
path: root/Crypto/src/crypto/ICipherParameters.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Crypto/src/crypto/ICipherParameters.cs')
-rw-r--r--Crypto/src/crypto/ICipherParameters.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Crypto/src/crypto/ICipherParameters.cs b/Crypto/src/crypto/ICipherParameters.cs
new file mode 100644

index 000000000..fff0941c7 --- /dev/null +++ b/Crypto/src/crypto/ICipherParameters.cs
@@ -0,0 +1,11 @@ +using System; + +namespace Org.BouncyCastle.Crypto +{ + /** + * all parameter classes implement this. + */ + public interface ICipherParameters + { + } +}