Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ private static string X500DistinguishedNameDecode(

while (x500NameSequenceReader.HasData)
{
rdnReaders.Add(x500NameSequenceReader.ReadSetOf());
// To match Windows' behavior, permit multi-value RDN SETs to not
// be DER sorted.
rdnReaders.Add(x500NameSequenceReader.ReadSetOf(skipSortOrderValidation: true));
}

// We need to allocate a StringBuilder to hold the data as we're building it, and there's the usual
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,15 @@ public static void NameWithNumericString()
Assert.Equal("OID.1.1.1.2.2.3=123 654 7890, CN=Test", dn.Decode(X500DistinguishedNameFlags.None));
}

[Fact]
public static void OrganizationUnitMultiValueWithIncorrectlySortedDerSet()
{
X500DistinguishedName dn = new X500DistinguishedName(
"301C311A300B060355040B13047A7A7A7A300B060355040B130461616161".HexToByteArray());

Assert.Equal("OU=zzzz + OU=aaaa", dn.Decode(X500DistinguishedNameFlags.None));
}

public static readonly object[][] WhitespaceBeforeCases =
{
// Regular space.
Expand Down