diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-05 18:16:51 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-05 18:16:51 +0700 |
commit | 2b958f0933d5abc865ccea785b774df8910510b2 (patch) | |
tree | 6b55bcd035e8460c54df7f13f9511a8a71417eb2 /crypto/src/security/JksStore.cs | |
parent | Port OpenPGP support for XDH, EdDSA from bc-java (diff) | |
download | BouncyCastle.NET-ed25519-2b958f0933d5abc865ccea785b774df8910510b2.tar.xz |
Resolve some FIXMEs
Diffstat (limited to '')
-rw-r--r-- | crypto/src/security/JksStore.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/src/security/JksStore.cs b/crypto/src/security/JksStore.cs index 30b21fad2..9f4aced96 100644 --- a/crypto/src/security/JksStore.cs +++ b/crypto/src/security/JksStore.cs @@ -10,6 +10,7 @@ using Org.BouncyCastle.Crypto; using Org.BouncyCastle.Crypto.IO; using Org.BouncyCastle.Pkcs; using Org.BouncyCastle.Utilities; +using Org.BouncyCastle.Utilities.Collections; using Org.BouncyCastle.Utilities.Date; using Org.BouncyCastle.Utilities.IO; using Org.BouncyCastle.X509; @@ -216,9 +217,7 @@ namespace Org.BouncyCastle.Security { var aliases = new HashSet<string>(m_certificateEntries.Keys); aliases.UnionWith(m_keyEntries.Keys); - // FIXME - //return CollectionUtilities.Proxy(aliases); - return aliases; + return CollectionUtilities.Proxy(aliases); } } |