Interface UrlSigner.IBlobSigner (3.5.0)

public interface IBlobSigner

Represents the capability of signing a blob in a suitable form for Google Cloud Storage signed URLs. This allows testing URL signing without credentials being available, as well as using Google Cloud IAM to sign blobs.

Namespace

Google.Cloud.Storage.V1

Assembly

Google.Cloud.Storage.V1.dll

Properties

Id

string Id { get; }

The identity of the signer, typically an email address.

Property Value
TypeDescription
String

Methods

CreateSignature(Byte[])

string CreateSignature(byte[] data)

Synchronously signs the given blob.

Parameter
NameDescription
dataByte[]

The data to sign. Must not be null.

Returns
TypeDescription
String

The blob signature as base64 text.

CreateSignatureAsync(Byte[], CancellationToken)

Task<string> CreateSignatureAsync(byte[] data, CancellationToken cancellationToken)

Asynchronously signs the given blob.

Parameters
NameDescription
dataByte[]

The data to sign. Must not be null.

cancellationTokenCancellationToken

The token to monitor for cancellation requests.

Returns
TypeDescription
Task<String>

A task representing the asynchronous operation, with a result returning the blob signature as base64 text.