Interface IBlobSigner (1.55.0)

public interface IBlobSigner

Represents a data blob signer.

Namespace

Google.Apis.Auth.OAuth2

Assembly

Google.Apis.Auth.dll

Methods

SignBlobAsync(Byte[], CancellationToken)

Task<string> SignBlobAsync(byte[] blob, CancellationToken cancellationToken = default(CancellationToken))

Returns the base64 encoded signature of the given blob.

Parameters
NameDescription
blobByte[]

The blob to sign.

cancellationTokenCancellationToken

The cancellation token.

Returns
TypeDescription
Task<String>

The base64 encoded signature.

Extension Method