summary refs log tree commit diff
path: root/crypto/src/asn1/pkcs/KeyDerivationFunc.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2024-06-20 21:29:18 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2024-06-20 21:29:18 +0700
commit3b505be299fc4e147598605a9ee30c10a7e3eb85 (patch)
tree946d70722499668b38ed038c2311d92ac08a373a /crypto/src/asn1/pkcs/KeyDerivationFunc.cs
parentAdd Try... methods to DerInteger for small value accessors (diff)
downloadBouncyCastle.NET-ed25519-3b505be299fc4e147598605a9ee30c10a7e3eb85.tar.xz
Refactoring in Asn1.Pkcs
Diffstat (limited to 'crypto/src/asn1/pkcs/KeyDerivationFunc.cs')
-rw-r--r--crypto/src/asn1/pkcs/KeyDerivationFunc.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/pkcs/KeyDerivationFunc.cs b/crypto/src/asn1/pkcs/KeyDerivationFunc.cs
index 9fc89853b..64672df54 100644
--- a/crypto/src/asn1/pkcs/KeyDerivationFunc.cs
+++ b/crypto/src/asn1/pkcs/KeyDerivationFunc.cs
@@ -1,9 +1,9 @@
-using Org.BouncyCastle.Asn1;
 using Org.BouncyCastle.Asn1.X509;
 
 namespace Org.BouncyCastle.Asn1.Pkcs
 {
-	public class KeyDerivationFunc
+    // TODO[api] This is not supposed to be a separate type; remove and use AlgorithmIdentifier
+    public class KeyDerivationFunc
 		: AlgorithmIdentifier
 	{
 		internal KeyDerivationFunc(Asn1Sequence seq)