<PackageReference Include="Azure.Storage.Common" Version="12.22.0" />

StorageSharedKeyCredentialInternals

This class is added to access protected static methods off of the base class that should not be exposed directly to customers.
namespace Azure.Storage { internal class StorageSharedKeyCredentialInternals : StorageSharedKeyCredential { private StorageSharedKeyCredentialInternals(string accountName, string accountKey) : base(accountName, accountKey) { } internal new static string ComputeSasSignature(StorageSharedKeyCredential credential, string message) { return StorageSharedKeyCredential.ComputeSasSignature(credential, message); } } }