1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/src/crypto/operators/Asn1KeyWrapper.cs b/crypto/src/crypto/operators/Asn1KeyWrapper.cs
index d84af8777..3fe8de8d5 100644
--- a/crypto/src/crypto/operators/Asn1KeyWrapper.cs
+++ b/crypto/src/crypto/operators/Asn1KeyWrapper.cs
@@ -35,6 +35,11 @@ namespace Org.BouncyCastle.Crypto.Operators
}
}
+ internal interface WapperProvider
+ {
+ object createWrapper();
+ }
+
internal class RsaOaepWrapper : IKeyWrapper, IKeyUnwrapper
{
private readonly AlgorithmIdentifier algId;
|