mirror of
https://github.com/bitwarden/mobile
synced 2026-01-11 21:13:37 +00:00
* Use CipherByteArray to signify encrypted byte[] * Rename CipherString and CipherByteArray to EncString and EncByteArray
12 lines
259 B
C#
12 lines
259 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Domain;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IAzureFileUploadService
|
|
{
|
|
Task Upload(string uri, EncByteArray data, Func<Task<string>> renewalCallback);
|
|
}
|
|
}
|