Rfc2253 1.1.2
dotnet add package Rfc2253 --version 1.1.2
NuGet\Install-Package Rfc2253 -Version 1.1.2
<PackageReference Include="Rfc2253" Version="1.1.2" />
paket add Rfc2253 --version 1.1.2
#r "nuget: Rfc2253, 1.1.2"
// Install Rfc2253 as a Cake Addin
#addin nuget:?package=Rfc2253&version=1.1.2
// Install Rfc2253 as a Cake Tool
#tool nuget:?package=Rfc2253&version=1.1.2
Accepts and parses strings in the format of an RFC 2253 Distinguished Name, and optionally normalizes them for direct comparison of equivalency.
This project is a .NET Standard 1.3 solution to parse LDAP (or X.509) Distinguished Names and optionally normalize them so that two (or more) Distinguished Names can be compared to one another for equivalency.
Closely follows RFC 2253 for parsing. Parses both LDAPv2 and LDAPv3, but normalizes output for LDAPv3.
Instructions for Use
- Supply a Distinguished Name to be parsed to the
DistinguishedName.Create(string distinguishedName)
method - Call the
Normalized()
method on the returned object to normalize the internal structures to be strictly compliant to RFC 2253 - Do the same two calls for another Distinguished Name
- To compare the two Distinguished Names for equivalency, compare the
DistinguishedName
objects'ToString()
results to one another
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Rfc2253:
Package | Downloads |
---|---|
AspNetCore.Authentication.SK.SmartID
SK Smart-ID external authentication for ASP.NET Core applications. |
|
AspNetCore.Authentication.SK.IdCard
SK ID-card external authentication for ASP.NET Core applications. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Released under the MIT License.
This project was originally released targeting .NET Core 2.0.
RFC 2253 Distinguished Name Parser Version 1.1.0 now targets .NET Standard 1.3 to make it compatible with a larger number of projects. Refer to https://docs.microsoft.com/en-us/dotnet/standard/net-standard for more details.
Version 1.1.2 fixes a bug that dropped a trailing space in an attribute value that was properly escaped.
Version 1.1.0 fixes a bug in the `ToString()` method (commas were missing), which may be a breaking change for some implementors.
Version 1.1.0 also fixes another bug in the `ToString()` method with regards to multi-valued attibutes, and now also sorts multi-valued attributes so that two distinguished names will now match if they have the same, but dis-ordered multi-valued attributes.