pub struct SecurityConfig {
pub min_password_length: usize,
pub require_password_complexity: bool,
pub password_hash_algorithm: PasswordHashAlgorithm,
pub jwt_algorithm: JwtAlgorithm,
pub secret_key: Option<String>,
pub previous_secret_key: Option<String>,
pub secure_cookies: bool,
pub cookie_same_site: CookieSameSite,
pub csrf_protection: bool,
pub session_timeout: Duration,
}Expand description
Security configuration options.
Governs password policy, JWT signing, cookie flags, CSRF protection, and session timeouts. Two named constructors cover the most common scenarios:
SecurityConfig::secure()— hardened production defaults.SecurityConfig::development()— relaxed settings for local work.
For anything in between, start from Default::default() and
override individual fields.
Fields§
§min_password_length: usizeMinimum password length
require_password_complexity: boolRequire password complexity
password_hash_algorithm: PasswordHashAlgorithmPassword hash algorithm
jwt_algorithm: JwtAlgorithmJWT signing algorithm
secret_key: Option<String>Secret key for signing (should be loaded from environment)
previous_secret_key: Option<String>Previous secret key to maintain validation capabilities during rotation
Enable secure cookies
Cookie SameSite policy
csrf_protection: boolCSRF protection
session_timeout: DurationSession timeout
Implementations§
Source§impl SecurityConfig
impl SecurityConfig
Sourcepub fn secure() -> Self
pub fn secure() -> Self
Create a new security configuration with secure defaults.
§Example
use auth_framework::config::SecurityConfig;
let sec = SecurityConfig::secure();
assert!(sec.secure_cookies);
assert!(sec.csrf_protection);
assert_eq!(sec.min_password_length, 12);Sourcepub fn development() -> Self
pub fn development() -> Self
Create a development-friendly configuration. WARNING: You MUST set a secret key before using this configuration! Use either config.security.secret_key or JWT_SECRET environment variable.
§Example
use auth_framework::config::SecurityConfig;
let sec = SecurityConfig::development();
assert_eq!(sec.min_password_length, 6);
assert!(!sec.secure_cookies);Trait Implementations§
Source§impl Clone for SecurityConfig
impl Clone for SecurityConfig
Source§fn clone(&self) -> SecurityConfig
fn clone(&self) -> SecurityConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SecurityConfig
impl Debug for SecurityConfig
Source§impl Default for SecurityConfig
impl Default for SecurityConfig
Source§impl<'de> Deserialize<'de> for SecurityConfig
impl<'de> Deserialize<'de> for SecurityConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for SecurityConfig
impl Display for SecurityConfig
Auto Trait Implementations§
impl Freeze for SecurityConfig
impl RefUnwindSafe for SecurityConfig
impl Send for SecurityConfig
impl Sync for SecurityConfig
impl Unpin for SecurityConfig
impl UnsafeUnpin for SecurityConfig
impl UnwindSafe for SecurityConfig
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.