1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! Provides functions for calculating Sigv4 signing keys, signatures, and
//! optional utilities for signing HTTP requests and Event Stream messages.
#![allow(clippy::derive_partial_eq_without_eq)]
#![warn(
missing_docs,
rustdoc::missing_crate_level_docs,
missing_debug_implementations,
rust_2018_idioms,
unreachable_pub
)]
use std::fmt;
use std::time::SystemTime;
pub mod sign;
mod date_time;
#[cfg(feature = "sign-eventstream")]
pub mod event_stream;
#[cfg(feature = "sign-http")]
pub mod http_request;
/// Parameters to use when signing.
#[non_exhaustive]
pub struct SigningParams<'a, S> {
/// Access Key ID to use.
pub(crate) access_key: &'a str,
/// Secret access key to use.
pub(crate) secret_key: &'a str,
/// (Optional) Security token to use.
pub(crate) security_token: Option<&'a str>,
/// Region to sign for.
pub(crate) region: &'a str,
/// AWS Service Name to sign for.
pub(crate) service_name: &'a str,
/// Timestamp to use in the signature (should be `SystemTime::now()` unless testing).
pub(crate) time: SystemTime,
/// Additional signing settings. These differ between HTTP and Event Stream.
pub(crate) settings: S,
}
impl<'a, S> SigningParams<'a, S> {
/// Returns the region that will be used to sign
pub fn region(&self) -> &str {
self.region
}
/// Returns the service name that will be used to sign
pub fn service_name(&self) -> &str {
self.service_name
}
}
impl<'a, S: fmt::Debug> fmt::Debug for SigningParams<'a, S> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("SigningParams")
.field("access_key", &"** redacted **")
.field("secret_key", &"** redacted **")
.field("security_token", &"** redacted **")
.field("region", &self.region)
.field("service_name", &self.service_name)
.field("time", &self.time)
.field("settings", &self.settings)
.finish()
}
}
impl<'a, S: Default> SigningParams<'a, S> {
/// Returns a builder that can create new `SigningParams`.
pub fn builder() -> signing_params::Builder<'a, S> {
Default::default()
}
}
/// Builder and error for creating [`SigningParams`]
pub mod signing_params {
use super::SigningParams;
use std::error::Error;
use std::fmt;
use std::time::SystemTime;
/// [`SigningParams`] builder error
#[derive(Debug)]
pub struct BuildError {
reason: &'static str,
}
impl BuildError {
fn new(reason: &'static str) -> Self {
Self { reason }
}
}
impl fmt::Display for BuildError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.reason)
}
}
impl Error for BuildError {}
/// Builder that can create new [`SigningParams`]
#[derive(Debug, Default)]
pub struct Builder<'a, S> {
access_key: Option<&'a str>,
secret_key: Option<&'a str>,
security_token: Option<&'a str>,
region: Option<&'a str>,
service_name: Option<&'a str>,
time: Option<SystemTime>,
settings: Option<S>,
}
impl<'a, S> Builder<'a, S> {
/// Sets the access key (required).
pub fn access_key(mut self, access_key: &'a str) -> Self {
self.access_key = Some(access_key);
self
}
/// Sets the access key (required)
pub fn set_access_key(&mut self, access_key: Option<&'a str>) {
self.access_key = access_key;
}
/// Sets the secret key (required)
pub fn secret_key(mut self, secret_key: &'a str) -> Self {
self.secret_key = Some(secret_key);
self
}
/// Sets the secret key (required)
pub fn set_secret_key(&mut self, secret_key: Option<&'a str>) {
self.secret_key = secret_key;
}
/// Sets the security token (optional)
pub fn security_token(mut self, security_token: &'a str) -> Self {
self.security_token = Some(security_token);
self
}
/// Sets the security token (optional)
pub fn set_security_token(&mut self, security_token: Option<&'a str>) {
self.security_token = security_token;
}
/// Sets the region (required)
pub fn region(mut self, region: &'a str) -> Self {
self.region = Some(region);
self
}
/// Sets the region (required)
pub fn set_region(&mut self, region: Option<&'a str>) {
self.region = region;
}
/// Sets the service name (required)
pub fn service_name(mut self, service_name: &'a str) -> Self {
self.service_name = Some(service_name);
self
}
/// Sets the service name (required)
pub fn set_service_name(&mut self, service_name: Option<&'a str>) {
self.service_name = service_name;
}
/// Sets the time to be used in the signature (required)
pub fn time(mut self, time: SystemTime) -> Self {
self.time = Some(time);
self
}
/// Sets the time to be used in the signature (required)
pub fn set_time(&mut self, time: Option<SystemTime>) {
self.time = time;
}
/// Sets additional signing settings (required)
pub fn settings(mut self, settings: S) -> Self {
self.settings = Some(settings);
self
}
/// Sets additional signing settings (required)
pub fn set_settings(&mut self, settings: Option<S>) {
self.settings = settings;
}
/// Builds an instance of [`SigningParams`]. Will yield a [`BuildError`] if
/// a required argument was not given.
pub fn build(self) -> Result<SigningParams<'a, S>, BuildError> {
Ok(SigningParams {
access_key: self
.access_key
.ok_or_else(|| BuildError::new("access key is required"))?,
secret_key: self
.secret_key
.ok_or_else(|| BuildError::new("secret key is required"))?,
security_token: self.security_token,
region: self
.region
.ok_or_else(|| BuildError::new("region is required"))?,
service_name: self
.service_name
.ok_or_else(|| BuildError::new("service name is required"))?,
time: self
.time
.ok_or_else(|| BuildError::new("time is required"))?,
settings: self
.settings
.ok_or_else(|| BuildError::new("settings are required"))?,
})
}
}
}
/// Container for the signed output and the signature.
///
/// This is returned by signing functions, and the signed output will be
/// different based on what is being signed (for example, an event stream
/// message, or an HTTP request).
#[derive(Debug)]
pub struct SigningOutput<T> {
output: T,
signature: String,
}
impl<T> SigningOutput<T> {
/// Creates a new [`SigningOutput`]
pub fn new(output: T, signature: String) -> Self {
Self { output, signature }
}
/// Returns the signed output
pub fn output(&self) -> &T {
&self.output
}
/// Returns the signature as a lowercase hex string
pub fn signature(&self) -> &str {
&self.signature
}
/// Decomposes the `SigningOutput` into a tuple of the signed output and the signature
pub fn into_parts(self) -> (T, String) {
(self.output, self.signature)
}
}