Interface IBlobSigner
Represents a data blob signer.
Namespace: Google.Apis.Auth.OAuth2
Assembly: Google.Apis.Auth.dll
Syntax
public interface IBlobSigner
Methods
SignBlobAsync(byte[], CancellationToken)
Returns the base64 encoded signature of the given blob.
Declaration
Task<string> SignBlobAsync(byte[] blob, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
byte[] | blob | The blob to sign. |
CancellationToken | cancellationToken | The cancellation token. |
Returns
Type | Description |
---|---|
Task<string> | The base64 encoded signature. |