Open 0xced opened 3 weeks ago
Tagging subscribers to this area: @dotnet/area-system-security, @bartonjs, @vcsjones See info in area-owners.md if you want to be subscribed.
There are some edge cases here that probably need to be considered.
First, it is possible to have an Oid
that has a friendly name, but not a value. For example:
using System;
using System.Security.Cryptography;
#pragma warning disable CA1416 // Validate platform compatibility
using ECDiffieHellmanCng ecdh = new(ECCurve.CreateFromFriendlyName("Curve25519"));
ECParameters p = ecdh.ExportParameters(false);
Console.WriteLine(p.Curve.Oid.FriendlyName);
Console.WriteLine(p.Curve.Oid.Value);
On Windows, Curve25519 is a named-only curve and has no Value. Or more simply, just doing Oid oid = new(null, "Potato");
. But the Curve25519 highlights that there is an actual real-world case for this happening.
We could do something like this:
public override string ToString()
{
return (Value, FriendlyName) switch
{
(string v, string f) => $"{v} ({f})",
(string v, null) => v,
(null, string f) => f,
(null, null) => string.Empty
};
}
But it has a certain amount of ambiguity to the output that I don't love.
Second, and this might be fixed now, is that touching FriendlyName
on Windows can have surprisingly bad perf characteristics on first-use, which would apply to ToString
.
Given that there are 4 possible output formats (as demonstrated by @vcsjones)... what are you hoping to do with this information?
Basically, any runtime ToString() of this type is going to be problematic. A calling application/library should be looking at the constituent parts and handling null
in a way that makes sense to their context. If you just want it for the debugger, then it might be a reasonable Debugger-Display value (while .ToString() is the default, the debugger-display value can be different)
This issue has been marked needs-author-action
and may be missing some important information.
This issue has been automatically marked no-recent-activity
because it has not had any activity for 14 days. It will be closed if no further activity occurs within 14 more days. Any new comment (by anyone, not necessarily the author) will remove no-recent-activity
.
Background and motivation
The
ToString()
method of theOid
class currently always printsSystem.Security.Cryptography.Oid
which is pretty much useless.A nicer implementation would display the oid value and the friendly name if available.
API Proposal
API Usage
Alternative Designs
Not applicable.
Risks
Probably very low.