25 references to FriendlyName
Microsoft.AspNetCore.DeveloperCertificates.XPlat.Tests (1)
CertificateManagerTests.cs (1)
61Assert.Equal("sha256RSA", httpsCertificate.SignatureAlgorithm.FriendlyName);
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (2)
HttpsTests.cs (2)
335if (oid.FriendlyName == "Client Authentication") 339else if (oid.FriendlyName == "Smart Card Logon")
Microsoft.DotNet.SignCheckLibrary (2)
Verification\AuthentiCode.cs (2)
214SignatureAlgorithm = cert.SignatureAlgorithm.FriendlyName 267SignatureAlgorithm = rfc3161SignerInfo.Certificate.SignatureAlgorithm.FriendlyName
System.Security.Cryptography (18)
src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsaManaged.ECDsa.cs (2)
220(ecParameters.Curve.Oid.Value != _algorithm.CurveOidValue && ecParameters.Curve.Oid.FriendlyName != _algorithm.CurveOid.FriendlyName))
src\libraries\Common\src\System\Security\Cryptography\ECOpenSsl.cs (1)
70string oid = !string.IsNullOrEmpty(curve.Oid.Value) ? curve.Oid.Value : curve.Oid.FriendlyName!;
src\libraries\Common\src\System\Security\Cryptography\ECOpenSsl.ImportExport.cs (1)
113parameters.Curve.Oid.Value : parameters.Curve.Oid.FriendlyName!;
src\libraries\Common\src\System\Security\Cryptography\Oids.Shared.cs (1)
55_ = oid.FriendlyName;
System\Security\Cryptography\EccKeyFormatHelper.cs (2)
517Debug.Assert(oid.FriendlyName != null); 518oid = Oid.FromFriendlyName(oid.FriendlyName, OidGroup.All);
System\Security\Cryptography\ECCurve.cs (2)
80if (string.IsNullOrEmpty(value.Value) && string.IsNullOrEmpty(value.FriendlyName)) 193(string.IsNullOrEmpty(Oid.FriendlyName) && string.IsNullOrEmpty(Oid.Value)))
System\Security\Cryptography\Helpers.cs (2)
218string.Equals(aCurve.Oid.FriendlyName, bCurve.Oid.FriendlyName, StringComparison.OrdinalIgnoreCase);
System\Security\Cryptography\X509Certificates\ECDsaX509SignatureGenerator.cs (1)
83string friendlyName = ecParameters.Curve.Oid.FriendlyName!;
System\Security\Cryptography\X509Certificates\X500NameEncoder.cs (3)
160if (StringComparer.Ordinal.Equals(oid.FriendlyName, oidValue) || 161string.IsNullOrEmpty(oid.FriendlyName)) 168decodedName.Append(oid.FriendlyName);
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (3)
556sb.Append(SignatureAlgorithm.FriendlyName); 572sb.Append(pubKey.Oid.FriendlyName); 625sb.Append(extension.Oid!.FriendlyName);
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\Oids.Shared.cs (1)
55_ = oid.FriendlyName;
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (1)
267string? friendlyName = oid.FriendlyName;