From d451751eb269ff1345c9937107788d678c70e36f Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 27 Apr 2019 14:40:53 -0400 Subject: Update SKIPJACK documentation (GH #824) --- skipjack.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'skipjack.h') diff --git a/skipjack.h b/skipjack.h index 0775cd7c..b761f8a9 100644 --- a/skipjack.h +++ b/skipjack.h @@ -2,6 +2,12 @@ /// \file skipjack.h /// \brief Classes for the SKIPJACK block cipher +/// \details The Crypto++ implementation conforms to SKIPJACK and KEA +/// Algorithm Specifications published by NIST in May 1998. The library passes +/// known answer tests available in NIST SP800-17, Table 6, pp. 140-42. +/// \sa SKIPJACK +/// and KEA Algorithm Specifications (May 1998), SKIPJACK on the Crypto++ wiki #ifndef CRYPTOPP_SKIPJACK_H #define CRYPTOPP_SKIPJACK_H @@ -18,7 +24,12 @@ struct SKIPJACK_Info : public FixedBlockSize<8>, public FixedKeyLength<10> }; /// \brief SKIPJACK block cipher -/// \sa SKIPJACK +/// \details The Crypto++ implementation conforms to SKIPJACK and KEA +/// Algorithm Specifications published by NIST in May 1998. The library passes +/// known answer tests available in NIST SP800-17, Table 6, pp. 140-42. +/// \sa SKIPJACK +/// and KEA Algorithm Specifications (May 1998), SKIPJACK on the Crypto++ wiki class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation { /// \brief SKIPJACK block cipher default operation -- cgit v1.2.1