sigv4 4.1.0  sigv4: ^4.1.0 copied to clipboard
sigv4: ^4.1.0 copied to clipboard
Library for signing AWS requests with Signature Version 4, with both convenience wrappers/classes and cryptography methods
 
A Dart library for signing AWS requests with Signature Version 4.
Usage #
Create a Sigv4Client. This will hold your secrets and configuration. Some omitted default values:
- regiondefaults to- eu-west-1
- serviceNamedefaults to- execute-api
final client = Sigv4Client(
  keyId: 'your_access_key_id',
  accessKey: 'your_access_key',
  region: 'eu-west-1',.
  serviceName: 'execute-api',
);
The easier way to create a request is by getting a package:http request object:
// A simple GET-request
final request = client.request('https://service.aws.com/endpoint');
get(request.url, headers: request.headers);
// A larger request
final request = client.request(
  'https://service.aws.com/endpoint',
  method: 'POST',
  query: {'key': 'value'},
  headers: {'header': 'value'},
  body: {'content': 'some-content'},
);
post(request.url, headers: request.headers, body: request.body);
Alternatively, you can get the canonical string and signed headers separately:
final path = 'https://service.aws.com/endpoint';
final query = {'key': 'value'};
final url = client.canonicalUrl(path, query: query);
final headers = client.signedHeaders(
  path,
  query: query,
);
get(url, headers: headers);
Extensions #
As of Dart 2.7.0, extensions were introduced. As of this release, sigv4 has extensions for these HTTP clients, as well as any source gen package built on these:
- http
- dio
- chopper
All extensions adds a .sign() method to the request object which uses the client to sign the request. Example using Dio:
  final dio = RequestOptions(method: 'GET', path: 'https://service.aws.com').sign(client);