1package azblob
2
3// StorageAccountCredential is a wrapper interface for SharedKeyCredential and UserDelegationCredential
4type StorageAccountCredential interface {
5	AccountName() string
6	ComputeHMACSHA256(message string) (base64String string)
7	getUDKParams() *UserDelegationKey
8}
9