Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dacut/scratchstack-aws-signature
AWS signature verification routines (Rust)
https://github.com/dacut/scratchstack-aws-signature
authentication aws rust sigv4
Last synced: 22 days ago
JSON representation
AWS signature verification routines (Rust)
- Host: GitHub
- URL: https://github.com/dacut/scratchstack-aws-signature
- Owner: dacut
- License: mit
- Created: 2019-11-23T08:38:46.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-23T16:26:36.000Z (4 months ago)
- Last Synced: 2024-10-05T15:16:17.891Z (about 2 months ago)
- Topics: authentication, aws, rust, sigv4
- Language: Rust
- Homepage:
- Size: 1.23 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE-MIT
Awesome Lists containing this project
README
# AWS signature verification routines for Rust
## Crate: [scratchstack-aws-signature](https://crates.io/crates/scratchstack-aws-signature)![GitHub Actions](https://github.com/dacut/scratchstack-aws-signature/workflows/Rust/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/dacut/scratchstack-aws-signature/badge.svg?branch=main)](https://coveralls.io/github/dacut/scratchstack-aws-signature?branch=main)The `scratchstack-aws-signature` crate (formerly known as `aws_sig_verify`) provides
AWS SigV4 _verification_ routines.
This *is not* the library you want if you just want to call AWS services
or other services that use AWS SigV4 signatures.
[Rusoto](https://github.com/rusoto/rusoto) already has a library,
[rusoto_signature](https://docs.rs/rusoto_signature/), that provides this
functionality.If you are attempting to perform AWS SigV4 verification using AWS-vended
credentials, this library also ___will not work for you___. You need the
caller's secret key (or a derivative), and AWS does not allow this for
obvious reasons. Instead, you should be using [API Gateway with IAM
authentication](https://docs.aws.amazon.com/apigateway/latest/developerguide/permissions.html).On the other hand, if you have your own ecosystem of AWS-like credentials
and are developing mock-AWS services or just really like AWS SigV4 but
can't run within AWS, this library _might_ be for you.Documentation for this package is published automatically to [docs.rs](https://docs.rs/scratchstack-aws-signature/).