Skip to content
Open

FIPS #213

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
13 changes: 13 additions & 0 deletions src/FusionAuthClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7791,6 +7791,19 @@ export interface ExternalJWTIdentityProvider extends BaseIdentityProvider<Extern
uniqueIdentityClaim?: string;
}

/**
* Determines if FusionAuth is in FIPS mode based on the system property <code>fusionauth.fips.enabled</code>. This can only be enabled once and
* should be enabled when the VM starts or as close to that point as possible.
* <p>
* Once this has been enabled, it cannot be disabled.
* <p>
* This also provides some helpers for FIPS things such as password length requirements.
*
* @author Brian Pontarelli & Daniel DeGroff
*/
export interface FIPS {
}

/**
* @author Daniel DeGroff
*/
Expand Down