-
Notifications
You must be signed in to change notification settings - Fork 41
Add wolfSSL FIPS FAQ #202
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
Add wolfSSL FIPS FAQ #202
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| -include ../common/common.am | ||
| .DEFAULT_GOAL := all | ||
| all: pdf html | ||
|
|
||
| SOURCES = section01.md \ | ||
| section02.md | ||
|
|
||
| ifeq ($(DOC_LANG),JA) | ||
| PDF = wolfSSL-FIPS-FAQ-jp.pdf | ||
| else | ||
| PDF = wolfSSL-FIPS-FAQ.pdf | ||
| endif | ||
|
|
||
| DOXYFILE = Doxyfile | ||
|
|
||
|
|
||
| .PHONY: html-prep | ||
| html-prep: | ||
|
|
||
| .PHONY: pdf-prep | ||
| pdf-prep: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| % wolfSSL FIPS FAQ  | ||
|
|
||
| --- | ||
| header-includes: | ||
| # Blank pages on new sections | ||
| - \usepackage{titlesec} | ||
| - \newcommand{\sectionbreak}{\clearpage} | ||
| # Fancy page headers | ||
| - \usepackage{fancyhdr} | ||
| - \pagestyle{fancy} | ||
| - \fancyfoot[LO,RE]{COPYRIGHT \copyright 2025 wolfSSL Inc.} | ||
| # Wrap long syntax highlighting code blocks | ||
| - \usepackage{fvextra} | ||
| - \DefineVerbatimEnvironment{Highlighting}{Verbatim}{breaklines,commandchars=\\\{\}} | ||
| # Wrap long non-sytax highlighted code blocks | ||
| - \usepackage{listings} | ||
| - \let\verbatim\undefined | ||
| - \let\verbatimend\undefined | ||
| - \lstnewenvironment{verbatim}{\lstset{breaklines,basicstyle=\ttfamily}}{} | ||
| subparagraph: yes | ||
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| site_name: wolfSSL FIPS FAQ | ||
| site_url: https://wolfssl.com/ | ||
| docs_dir: build/html/ | ||
| site_dir: html/ | ||
| copyright: Copyright © 2025 wolfSSL Inc. | ||
| nav: | ||
| - "1. Introduction": index.md | ||
| - "2. FAQ": section02.md | ||
| theme: | ||
| name: null | ||
| custom_dir: ../mkdocs-material/material | ||
| language: en | ||
| palette: | ||
| primary: indigo | ||
| accent: indigo | ||
| font: | ||
| text: roboto | ||
| code: roboto mono | ||
| icon: "logo.png" | ||
| logo: logo.png | ||
| favicon: logo.png | ||
| feature: | ||
| tabs: true | ||
| extra_css: [skin.css] | ||
| use_directory_urls: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # Introduction | ||
|
|
||
| This page lists some of the most common issues and questions that are recieved by our wolfSSL security experts, along with their responses. This FAQ is useful for solving general questions that pertain to building/implementing wolfSSL FIPS. If this page does not provide an answer to your question, please feel free to check the wolfSSL Manual, or contact us at support@wolfssl.com. | ||
|
|
||
| ## Questions | ||
|
|
||
| 1. [Why did I receive wolfSSL_X.X.X_commercial-fips-OE-v2.7z when we validated with Y.Y.Y?](./section02.md#why-did-i-receive-wolfssl-xxx-xommercial-fips-oe-v27z-when-we=validated-with-yyy) | ||
| 2. [How do I know if I am using the FIPS module?](./section02.md#how-do-i-know-if-i-am-using-the-fips-module) | ||
| 3. [Does the Power On Self Test (POST) really have to run every time?](./section02.md#does-the-power-on-self-test-post-really-have-to-run-every-time) | ||
| 1. [Followup Post Q: What about this feature NO_ATTRIBUTE_CONSTRUCTOR? Can I use that to by-pass the POST by not running it in the constructor?](./section02.md#does-the-power-on-self-test-post-really-have-to-run-every-time) | ||
| 2. [Followup Post Q: Why is the feature NO_ATTRIBUTE_CONSTRUCTOR there then if I can not use it?](./section02.md#does-the-power-on-self-test-post-really-have-to-run-every-time) | ||
| 3. [Followup Post Q: Who can determine when NO_ATTRIBUTE_CONSTRUCTOR is allowed?](./section02.md#does-the-power-on-self-test-post-really-have-to-run-every-time) | ||
| 4. [Followup Post Q: What about with fips-ready, can I use NO_ATTRIBUTE_CONSTRUCTOR with fips-ready?](./section02.md#does-the-power-on-self-test-post-really-have-to-run-every-time) | ||
| 4. [WhatWhat can go wrong for the end user after basic testing?](./section02.md#what-can-go-wrong-for-the-end-user-after-basic-testing) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.