summaryrefslogtreecommitdiff
path: root/fips140.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-11-19 13:09:33 -0500
committerJeffrey Walton <noloader@gmail.com>2015-11-19 13:09:33 -0500
commitb3e49d8c96bb8044715db457d04669b42b169fab (patch)
tree67ca70a2b55a656d79641c3771ec49751993fa4b /fips140.h
parent6911cc9e91e3b7a382030cedc55438ad8b7405ca (diff)
downloadcryptopp-git-b3e49d8c96bb8044715db457d04669b42b169fab.tar.gz
Additional documentation; fixed issues with Clang integrated assembler and different versions numbers for LLVM Clang and Apple Clang; fixed missing header in DSA class
Diffstat (limited to 'fips140.h')
-rw-r--r--fips140.h80
1 files changed, 67 insertions, 13 deletions
diff --git a/fips140.h b/fips140.h
index b580fe46..2023165a 100644
--- a/fips140.h
+++ b/fips140.h
@@ -1,46 +1,94 @@
+// fips140.h - written and placed in the public domain by Wei Dai
+
+//! \file fips140.h
+//! \brief Classes and functions for the FIPS 140-2 validated library
+//! \details The FIPS validated library is only available on Windows as a DLL. Once compiled,
+//! the library is always in FIPS mode contingent upon successful execution of
+//! DoPowerUpSelfTest() or DoDllPowerUpSelfTest().
+//! \sa <A HREF="http://cryptopp.com/wiki/Visual_Studio">Visual Studio</A> and
+//! <A HREF="http://cryptopp.com/wiki/config.h">config.h</A> on the Crypto++ wiki.
+
#ifndef CRYPTOPP_FIPS140_H
#define CRYPTOPP_FIPS140_H
-/*! \file
- FIPS 140 related functions and classes.
-*/
-
#include "cryptlib.h"
#include "secblock.h"
NAMESPACE_BEGIN(CryptoPP)
-
-//! exception thrown when a crypto algorithm is used after a self test fails
+
+//! \class SelfTestFailure
+//! Exception thrown when a crypto algorithm is used after a self test fails
+//! \details The self tests for an algorithm are performed by Algortihm class
+//! when CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2 is defined.
class CRYPTOPP_DLL SelfTestFailure : public Exception
{
public:
explicit SelfTestFailure(const std::string &s) : Exception(OTHER_ERROR, s) {}
};
-//! returns whether FIPS 140-2 compliance features were enabled at compile time
+//! \brief Determines whether the library provides FIPS validated cryptography
+//! \returns true if FIPS 140-2 validated features were enabled at compile time.
+//! \details true if FIPS 140-2 validated features were enabled at compile time,
+//! false otherwise.
+//! \note FIPS mode is enabled at compile time. A program or other module cannot
+//! arbitrarily enter or exit the mode.
CRYPTOPP_DLL bool CRYPTOPP_API FIPS_140_2_ComplianceEnabled();
-//! enum values representing status of the power-up self test
-enum PowerUpSelfTestStatus {POWER_UP_SELF_TEST_NOT_DONE, POWER_UP_SELF_TEST_FAILED, POWER_UP_SELF_TEST_PASSED};
+//! \brief Status of the power-up self test
+enum PowerUpSelfTestStatus {
+
+ //! \brief The self tests have not been performed.
+ POWER_UP_SELF_TEST_NOT_DONE,
+ //! \brief The self tests were executed via DoPowerUpSelfTest() or
+ //! DoDllPowerUpSelfTest(), but the result was failure.
+ POWER_UP_SELF_TEST_FAILED,
+ //! \brief The self tests were executed via DoPowerUpSelfTest() or
+ //! DoDllPowerUpSelfTest(), and the result was success.
+ POWER_UP_SELF_TEST_PASSED
+};
-//! perform the power-up self test, and set the self test status
+//! \brief Performs the power-up self test
+//! \param moduleFilename the fully qualified name of the module
+//! \param expectedModuleMac the expected MAC of the components protected by the integrity check
+//! \details Performs the power-up self test, and sets the self test status to
+//! POWER_UP_SELF_TEST_PASSED or POWER_UP_SELF_TEST_FAILED.
+//! \details The self tests for an algorithm are performed by the Algortihm class
+//! when CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2 is defined.
CRYPTOPP_DLL void CRYPTOPP_API DoPowerUpSelfTest(const char *moduleFilename, const byte *expectedModuleMac);
-//! perform the power-up self test using the filename of this DLL and the embedded module MAC
+//! \brief Performs the power-up self test on the DLL
+//! \details Performs the power-up self test using the filename of this DLL and the
+//! embedded module MAC, and sets the self test status to POWER_UP_SELF_TEST_PASSED or
+//! POWER_UP_SELF_TEST_FAILED.
+//! \details The self tests for an algorithm are performed by the Algortihm class
+//! when CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2 is defined.
CRYPTOPP_DLL void CRYPTOPP_API DoDllPowerUpSelfTest();
-//! set the power-up self test status to POWER_UP_SELF_TEST_FAILED
+//! \brief Sets the power-up self test status to POWER_UP_SELF_TEST_FAILED
+//! \details Sets the power-up self test status to POWER_UP_SELF_TEST_FAILED to simulate failure.
CRYPTOPP_DLL void CRYPTOPP_API SimulatePowerUpSelfTestFailure();
-//! return the current power-up self test status
+//! \brief Provides the current power-up self test status
+//! \returns the current power-up self test status
CRYPTOPP_DLL PowerUpSelfTestStatus CRYPTOPP_API GetPowerUpSelfTestStatus();
+#ifndef CRYPTOPP_DOXYGEN_PROCESSING
typedef PowerUpSelfTestStatus (CRYPTOPP_API * PGetPowerUpSelfTestStatus)();
+#endif
+//! \brief Class object that calculates the MAC on the module
+//! \returns the MAC for the module
CRYPTOPP_DLL MessageAuthenticationCode * CRYPTOPP_API NewIntegrityCheckingMAC();
+//! \brief Verifies the MAC on the module
+//! \param moduleFilename the fully qualified name of the module
+//! \param expectedModuleMac the expected MAC of the components protected by the integrity check
+//! \param pActualMac the actual MAC of the components calculated by the integrity check
+//! \param pMacFileLocation the offest of the MAC in the PE/PE+ module
+//! \returns true if the MAC is valid, false otherwise
CRYPTOPP_DLL bool CRYPTOPP_API IntegrityCheckModule(const char *moduleFilename, const byte *expectedModuleMac, SecByteBlock *pActualMac = NULL, unsigned long *pMacFileLocation = NULL);
+#ifndef CRYPTOPP_DOXYGEN_PROCESSING
// this is used by Algorithm constructor to allow Algorithm objects to be constructed for the self test
bool PowerUpSelfTestInProgressOnThisThread();
@@ -51,7 +99,13 @@ void EncryptionPairwiseConsistencyTest(const PK_Encryptor &encryptor, const PK_D
void SignaturePairwiseConsistencyTest_FIPS_140_Only(const PK_Signer &signer, const PK_Verifier &verifier);
void EncryptionPairwiseConsistencyTest_FIPS_140_Only(const PK_Encryptor &encryptor, const PK_Decryptor &decryptor);
+#endif
+//! \brief The placeholder used prior to embedding the actual MAC in the module.
+//! \details After the DLL is built but before it is MAC'd, the string CRYPTOPP_DUMMY_DLL_MAC
+//! is used as a placeholder for the actual MAC. A post-build step is performed which calculates
+//! the MAC of the DLL and embeds it in the module. The actual MAC is written by the
+//! <tt>cryptest.exe</tt> program using the <tt>mac_dll</tt> subcommand.
#define CRYPTOPP_DUMMY_DLL_MAC "MAC_51f34b8db820ae8"
NAMESPACE_END