1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pkcs/Pkcs12Store.cs b/crypto/src/pkcs/Pkcs12Store.cs
index d09b8828f..7553088a2 100644
--- a/crypto/src/pkcs/Pkcs12Store.cs
+++ b/crypto/src/pkcs/Pkcs12Store.cs
@@ -328,7 +328,7 @@ namespace Org.BouncyCastle.Pkcs
// we've found more than one - one might be incorrect
if (aOid.Equals(PkcsObjectIdentifiers.Pkcs9AtLocalKeyID))
{
- String id = Hex.ToHexString(Asn1OctetString.GetInstance(attr).GetOctets());
+ string id = Hex.ToHexString(Asn1OctetString.GetInstance(attr).GetOctets());
if (!(keys[id] != null || localIds[id] != null))
{
continue; // ignore this one - it's not valid
|