<PackageReference Include="Microsoft.Identity.Client" Version="4.84.0" />

Microsoft.Identity.Client.PlatformsCommon.Interfaces.ICryptographyManager

namespace Microsoft.Identity.Client.PlatformsCommon.Interfaces { internal interface ICryptographyManager { string CreateBase64UrlEncodedSha256Hash(string input); string GenerateCodeVerifier(); string CreateSha256Hash(string input); string CreateSha256HashHex(string input); byte[] CreateSha256HashBytes(string input); byte[] SignWithCertificate(string message, X509Certificate2 certificate, RSASignaturePadding signaturePadding); } }