Skip to content

Bump key rotation interval to 30 days on iOS #6113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/MullvadVPN/TunnelManager/WgKeyRotation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import WireGuardKitTypes
struct WgKeyRotation {
/// Private key rotation interval counted from the time when the key was successfully pushed
/// to the backend.
public static let rotationInterval: Duration = .days(14)
public static let rotationInterval: Duration = .days(30)

/// Private key rotation retry interval counted from the time when the last rotation
/// attempt took place.
Expand Down
Loading