Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cookie.GetHashCode() does not ignore leading dot in Domain #112602

Closed
antonfirsov opened this issue Feb 15, 2025 · 1 comment · Fixed by #112604
Closed

Cookie.GetHashCode() does not ignore leading dot in Domain #112602

antonfirsov opened this issue Feb 15, 2025 · 1 comment · Fixed by #112604
Assignees
Labels
area-System.Net in-pr There is an active PR which will close this issue when it is merged
Milestone

Comments

@antonfirsov
Copy link
Member

There was an overlook in #64038: we switched behavior to ignore leading dot in Cookie.Domain for equality comparison, but it still affects Cookie.GetHashCode() calculation.

Cookie a = new("a", "aa") { Domain = "wow" };
Cookie b = new("a", "aa") { Domain = ".wow" };
Console.WriteLine(a.Equals(b)); // True
Console.WriteLine(a.GetHashCode() == b.GetHashCode()); // False :(
@antonfirsov antonfirsov added this to the 10.0.0 milestone Feb 15, 2025
@antonfirsov antonfirsov self-assigned this Feb 15, 2025
Copy link
Contributor

Tagging subscribers to this area: @dotnet/ncl
See info in area-owners.md if you want to be subscribed.

@dotnet-policy-service dotnet-policy-service bot added the in-pr There is an active PR which will close this issue when it is merged label Feb 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-System.Net in-pr There is an active PR which will close this issue when it is merged
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant