28 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)
305if (oid.FriendlyName == "Client Authentication") 309else if (oid.FriendlyName == "Smart Card Logon")
Microsoft.Build.Tasks.Core (3)
ManifestUtil\SecurityUtil.cs (3)
622return string.Equals(oid.FriendlyName, "sha256RSA", StringComparison.OrdinalIgnoreCase) || 623string.Equals(oid.FriendlyName, "sha384RSA", StringComparison.OrdinalIgnoreCase) || 624string.Equals(oid.FriendlyName, "sha512RSA", StringComparison.OrdinalIgnoreCase);
Microsoft.DotNet.SignCheckLibrary (4)
Verification\AuthentiCode.cs (2)
84SignatureAlgorithm = rfc3161SignerInfo.Certificate.SignatureAlgorithm.FriendlyName 169SignatureAlgorithm = cert.SignatureAlgorithm.FriendlyName
Verification\Jar\JarSignatureFile.cs (1)
280SignatureAlgorithm = timestampSignerCert.SignatureAlgorithm.FriendlyName
Verification\VsixVerifier.cs (1)
98timestamp.SignatureAlgorithm = Oid.FromOidValue(timestampInfo.HashAlgorithm.pszObjId, OidGroup.HashAlgorithm).FriendlyName;
System.Security.Cryptography (16)
src\libraries\Common\src\System\Security\Cryptography\EccKeyFormatHelper.cs (2)
538Debug.Assert(oid.FriendlyName != null); 539oid = Oid.FromFriendlyName(oid.FriendlyName, OidGroup.All);
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)
88_ = oid.FriendlyName;
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)
211string.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)
148if (StringComparer.Ordinal.Equals(oid.FriendlyName, oidValue) || 149string.IsNullOrEmpty(oid.FriendlyName)) 156decodedName.Append(oid.FriendlyName);
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (3)
551sb.Append(SignatureAlgorithm.FriendlyName); 567sb.Append(pubKey.Oid.FriendlyName); 616sb.Append(extension.Oid!.FriendlyName);
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\Oids.Shared.cs (1)
88_ = oid.FriendlyName;
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (1)
267string? friendlyName = oid.FriendlyName;