Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
Updated version number to 2.3 (final release).
Browse files Browse the repository at this point in the history
More eligible SSL/TLS certificates are displayed in the list "Choose TLS/SSL certificate to embed into configuration..." and the one for CA certificates in SEB Config Tool / Network / Certificates.
  • Loading branch information
danschlet committed Aug 30, 2019
1 parent 02a1f20 commit fc4f1cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Binary file modified InstallShield 2012 Spring Projects/SafeExamBrowser_2018.ism
Binary file not shown.
Expand Up @@ -145,11 +145,15 @@ public static ArrayList GetSSLCertificatesAndNames(ref ArrayList certificateName

X509Store store = new X509Store(StoreName.CertificateAuthority);
store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection certsCollection = store.Certificates.Find(X509FindType.FindByKeyUsage, (X509KeyUsageFlags.DigitalSignature | X509KeyUsageFlags.KeyEncipherment), false);
X509Certificate2Collection certsCollection = store.Certificates.Find(X509FindType.FindByKeyUsage, (X509KeyUsageFlags.DigitalSignature), false);
X509Certificate2Collection certsCollection2 = store.Certificates.Find(X509FindType.FindByKeyUsage, (X509KeyUsageFlags.KeyEncipherment), false);
store = new X509Store(StoreName.AddressBook);
store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection certsCollection2 = store.Certificates.Find(X509FindType.FindByKeyUsage, (X509KeyUsageFlags.DigitalSignature | X509KeyUsageFlags.KeyEncipherment), false);
X509Certificate2Collection certsCollection3 = store.Certificates.Find(X509FindType.FindByKeyUsage, (X509KeyUsageFlags.DigitalSignature), false);
X509Certificate2Collection certsCollection4 = store.Certificates.Find(X509FindType.FindByKeyUsage, (X509KeyUsageFlags.KeyEncipherment), false);
certsCollection.AddRange(certsCollection2);
certsCollection.AddRange(certsCollection3);
certsCollection.AddRange(certsCollection4);

foreach (X509Certificate2 x509Certificate in certsCollection)
{
Expand Down
Expand Up @@ -31,4 +31,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.3.*")]
[assembly: AssemblyInformationalVersion("2.3pre4")]
[assembly: AssemblyInformationalVersion("2.3")]

0 comments on commit fc4f1cc

Please sign in to comment.