Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2004-07-07 23:37:27 +0400
committerSebastien Pouliot <sebastien@ximian.com>2004-07-07 23:37:27 +0400
commit6a84d3c639d15068a883f01c853f44dbc8e48129 (patch)
treece57bcf4bdb87bd759b007ebbe44b83400a08494 /mcs/class/System.Security/System.Security.Cryptography.X509Certificates
parentab83dcf609c5190f1f20ae7a9cbd5d0eef07c61b (diff)
2004-07-07 Sebastien Pouliot <sebastien@ximian.com>
* X509Store.cs: Removed old store code (as it has changed a lot in Mono.Security). svn path=/trunk/mcs/; revision=30854
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.X509Certificates')
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.X509Certificates/ChangeLog5
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.X509Certificates/X509Store.cs49
2 files changed, 33 insertions, 21 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/ChangeLog b/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/ChangeLog
index eae3138c79e..3fa11af9c9b 100755
--- a/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/ChangeLog
+++ b/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-07 Sebastien Pouliot <sebastien@ximian.com>
+
+ * X509Store.cs: Removed old store code (as it has changed a lot in
+ Mono.Security).
+
2003-12-07 Sebastien Pouliot <spouliot@videotron.ca>
* PublicKey.cs: New (1.2). Class that encapsulate an ASN.1 encoded
diff --git a/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/X509Store.cs b/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/X509Store.cs
index 99d23bb3cf9..945e94ff4d9 100755
--- a/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/X509Store.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.X509Certificates/X509Store.cs
@@ -2,11 +2,10 @@
// X509Store.cs - System.Security.Cryptography.X509Certificates.X509Store
//
// Author:
-// Sebastien Pouliot (spouliot@motus.com)
+// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-//
-
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -33,38 +32,45 @@
using System;
using Mono.Security.X509;
-using Mono.Security.X509.Stores;
namespace System.Security.Cryptography.X509Certificates {
- // Note: Match the definition of framework version 1.2.3400.0 on http://longhorn.msdn.microsoft.com
-
public sealed class X509Store {
private string _name;
private StoreLocation _location;
private X509CertificateExCollection _certs;
private OpenFlags _flags;
- private ICertificateStore _store;
// constructors
// BUG: MY when using this constructor - My when using StoreName.My
public X509Store ()
- : this ("MY", StoreLocation.CurrentUser) {}
+ : this ("MY", StoreLocation.CurrentUser)
+ {
+ }
public X509Store (string storeName)
- : this (storeName, StoreLocation.CurrentUser) {}
+ : this (storeName, StoreLocation.CurrentUser)
+ {
+ }
public X509Store (StoreName storeName)
- : this (StoreNameToString (storeName), StoreLocation.CurrentUser) {}
+ : this (StoreNameToString (storeName), StoreLocation.CurrentUser)
+ {
+ }
public X509Store (StoreLocation storeLocation)
- : this ("MY", storeLocation) {}
+ : this ("MY", storeLocation)
+ {
+ }
public X509Store (StoreName storeName, StoreLocation storeLocation)
- : this (StoreNameToString (storeName), StoreLocation.CurrentUser) {}
+ : this (StoreNameToString (storeName), StoreLocation.CurrentUser)
+ {
+ }
+ [MonoTODO ("call Mono.Security.X509.X509Store*")]
public X509Store (string storeName, StoreLocation storeLocation)
{
if (storeName == null)
@@ -72,7 +78,6 @@ namespace System.Security.Cryptography.X509Certificates {
_name = storeName;
_location = storeLocation;
- _store = new Mono.Security.X509.Stores.FileCertificateStore ();
}
// properties
@@ -109,15 +114,16 @@ namespace System.Security.Cryptography.X509Certificates {
}
}
+ [MonoTODO ("call Mono.Security.X509.X509Store*")]
public void Add (X509CertificateEx certificate)
{
if (certificate == null)
throw new ArgumentNullException ("certificate");
- if ((!ReadOnly) && (_store != null)) {
+ if (!ReadOnly) {
try {
Mono.Security.X509.X509Certificate x = new Mono.Security.X509.X509Certificate (certificate.RawData);
- _store.Add (x);
+ // TODO
}
catch {
throw new CryptographicException ("couldn't add certificate");
@@ -137,30 +143,31 @@ namespace System.Security.Cryptography.X509Certificates {
}
}
+ [MonoTODO ("call Mono.Security.X509.X509Store*")]
public void Close ()
{
- if (_store != null)
- _store.Close ();
}
+ [MonoTODO ("call Mono.Security.X509.X509Store*")]
public void Open (OpenFlags flags)
{
_flags = flags;
bool readOnly = ((flags & OpenFlags.ReadOnly) == OpenFlags.ReadOnly);
bool create = !((flags & OpenFlags.OpenExistingOnly) == OpenFlags.OpenExistingOnly);
bool archive = ((flags & OpenFlags.IncludeArchived) == OpenFlags.IncludeArchived);
- _store.Open (_name, _location.ToString (), readOnly, create, archive);
+ // TODO
}
+ [MonoTODO ("call Mono.Security.X509.X509Store*")]
public void Remove (X509CertificateEx certificate)
{
if (certificate == null)
throw new ArgumentNullException ("certificate");
- if ((!ReadOnly) && (_store != null)) {
+ if (!ReadOnly) {
try {
Mono.Security.X509.X509Certificate x = new Mono.Security.X509.X509Certificate (certificate.RawData);
- _store.Remove (x);
+ // TODO
}
catch {
throw new CryptographicException ("couldn't remove certificate");
@@ -182,4 +189,4 @@ namespace System.Security.Cryptography.X509Certificates {
}
}
-#endif \ No newline at end of file
+#endif