diff options
author | David Hook <dgh@bouncycastle.org> | 2019-01-19 10:41:07 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2019-01-19 10:41:07 +1100 |
commit | cf29846911c5d098948cb0ecaa377bfc73e80d4e (patch) | |
tree | cfb09a185db2149e89420a126d0e556758bf1a9e /crypto/src | |
parent | added basic wrapper code (diff) | |
download | BouncyCastle.NET-ed25519-cf29846911c5d098948cb0ecaa377bfc73e80d4e.tar.xz |
fixed nl
Diffstat (limited to 'crypto/src')
-rw-r--r-- | crypto/src/crypto/operators/Asn1KeyWrapper.cs | 5 |
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; |