diff options
author | David Hook <dgh@bouncycastle.org> | 2019-01-18 12:39:29 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2019-01-18 12:39:29 +1100 |
commit | 6eb7a96072455824c11586e2e4e6a01451036779 (patch) | |
tree | 7c2e5cbc36aab0d02f3fa022a1222219814b75e8 /crypto | |
parent | added use of IKeyWrapper for managing CMS KeyTransRecipient (diff) | |
download | BouncyCastle.NET-ed25519-6eb7a96072455824c11586e2e4e6a01451036779.tar.xz |
added use of IKeyWrapper for managing CMS KeyTransRecient
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/src/crypto/operators/Asn1KeyWrapper.cs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/crypto/src/crypto/operators/Asn1KeyWrapper.cs b/crypto/src/crypto/operators/Asn1KeyWrapper.cs index 8cd5cf8fe..f710b8f7d 100644 --- a/crypto/src/crypto/operators/Asn1KeyWrapper.cs +++ b/crypto/src/crypto/operators/Asn1KeyWrapper.cs @@ -29,20 +29,4 @@ namespace Org.BouncyCastle.Crypto.Operators throw new NotImplementedException(); } } - - public class Asn1KeyUnwrapper: IKeyUnwrapper - { - public object AlgorithmDetails - { - get - { - throw new NotImplementedException(); - } - } - - public IBlockResult Unwrap(byte[] cipherText, int offset, int length) - { - throw new NotImplementedException(); - } - } } |