Change file preamble to include "originally written by Wei Dai"

We have made a fair number of changes, and we don't want WD to receive credit for issues he was not part of
pull/378/head
Jeffrey Walton 2017-01-27 07:05:45 -05:00
parent aaf43e3f1d
commit 81b1a18063
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
210 changed files with 209 additions and 216 deletions

2
3way.h
View File

@ -1,4 +1,4 @@
// 3way.h - written and placed in the public domain by Wei Dai // 3way.h - originally written and placed in the public domain by Wei Dai
//! \file 3way.h //! \file 3way.h
//! \brief Classes for the 3-Way block cipher //! \brief Classes for the 3-Way block cipher

View File

@ -1,4 +1,4 @@
// adler32.cpp - written and placed in the public domain by Wei Dai // adler32.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "adler32.h" #include "adler32.h"

View File

@ -1,4 +1,4 @@
// adler32.h - written and placed in the public domain by Wei Dai // adler32.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile adler32.h //! \headerfile adler32.h

2
aes.h
View File

@ -1,4 +1,4 @@
// aes.h - written and placed in the public domain by Wei Dai // aes.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \brief Class file for the AES cipher (Rijndael) //! \brief Class file for the AES cipher (Rijndael)

View File

@ -1,4 +1,4 @@
// algebra.cpp - written and placed in the public domain by Wei Dai // algebra.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// algebra.h - written and placed in the public domain by Wei Dai // algebra.h - originally written and placed in the public domain by Wei Dai
//! \file algebra.h //! \file algebra.h
//! \brief Classes for performing mathematics over different fields //! \brief Classes for performing mathematics over different fields

View File

@ -1,4 +1,4 @@
// algparam.cpp - written and placed in the public domain by Wei Dai // algparam.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// algparam.h - written and placed in the public domain by Wei Dai // algparam.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile algparam.h //! \headerfile algparam.h

View File

@ -1,4 +1,4 @@
// arc4.cpp - written and placed in the public domain by Wei Dai // arc4.cpp - originally written and placed in the public domain by Wei Dai
// The ARC4 algorithm was first revealed in an anonymous email to the // The ARC4 algorithm was first revealed in an anonymous email to the
// cypherpunks mailing list. This file originally contained some // cypherpunks mailing list. This file originally contained some

2
arc4.h
View File

@ -1,4 +1,4 @@
// arc4.h - written and placed in the public domain by Wei Dai // arc4.h - originally written and placed in the public domain by Wei Dai
//! \file arc4.h //! \file arc4.h
//! \brief Classes for ARC4 cipher //! \brief Classes for ARC4 cipher

View File

@ -1,4 +1,4 @@
// argnames.h - written and placed in the public domain by Wei Dai // argnames.h - originally written and placed in the public domain by Wei Dai
//! \file argnames.h //! \file argnames.h
//! \brief Standard names for retrieving values by name when working with \p NameValuePairs //! \brief Standard names for retrieving values by name when working with \p NameValuePairs

View File

@ -1,4 +1,4 @@
// asn.cpp - written and placed in the public domain by Wei Dai // asn.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

2
asn.h
View File

@ -1,4 +1,4 @@
// asn.h - written and placed in the public domain by Wei Dai // asn.h - originally written and placed in the public domain by Wei Dai
//! \file asn.h //! \file asn.h
//! \brief Classes and functions for working with ANS.1 objects //! \brief Classes and functions for working with ANS.1 objects

View File

@ -1,4 +1,4 @@
// authenc.cpp - written and placed in the public domain by Wei Dai // authenc.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// authenc.h - written and placed in the public domain by Wei Dai // authenc.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile authenc.h //! \headerfile authenc.h

View File

@ -1,4 +1,4 @@
// base64.cpp - written and placed in the public domain by Wei Dai // base64.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "base64.h" #include "base64.h"

View File

@ -1,4 +1,4 @@
// base64.h - written and placed in the public domain by Wei Dai // base64.h - originally written and placed in the public domain by Wei Dai
//! \file base64.h //! \file base64.h
//! \brief Classes for the Base64Encoder, Base64Decoder, Base64URLEncoder and Base64URLDecoder //! \brief Classes for the Base64Encoder, Base64Decoder, Base64URLEncoder and Base64URLDecoder

View File

@ -1,4 +1,4 @@
// basecode.cpp - written and placed in the public domain by Wei Dai // basecode.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// basecode.h - written and placed in the public domain by Wei Dai // basecode.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \brief Base classes for working with encoders and decoders. //! \brief Base classes for working with encoders and decoders.

View File

@ -1,4 +1,4 @@
// bench.h - written and placed in the public domain by Wei Dai // bench.h - originally written and placed in the public domain by Wei Dai
#ifndef CRYPTOPP_BENCH_H #ifndef CRYPTOPP_BENCH_H
#define CRYPTOPP_BENCH_H #define CRYPTOPP_BENCH_H

View File

@ -1,4 +1,4 @@
// bench1.cpp - written and placed in the public domain by Wei Dai // bench1.cpp - originally written and placed in the public domain by Wei Dai
#include "cryptlib.h" #include "cryptlib.h"
#include "bench.h" #include "bench.h"

View File

@ -1,4 +1,4 @@
// bench2.cpp - written and placed in the public domain by Wei Dai // bench2.cpp - originally written and placed in the public domain by Wei Dai
#include "cryptlib.h" #include "cryptlib.h"
#include "bench.h" #include "bench.h"

View File

@ -1,4 +1,4 @@
// blowfish.cpp - written and placed in the public domain by Wei Dai // blowfish.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "blowfish.h" #include "blowfish.h"

View File

@ -1,4 +1,4 @@
// blowfish.h - written and placed in the public domain by Wei Dai // blowfish.h - originally written and placed in the public domain by Wei Dai
//! \file blowfish.h //! \file blowfish.h
//! \brief Classes for the Blowfish block cipher //! \brief Classes for the Blowfish block cipher

View File

@ -1,4 +1,4 @@
// blumshub.cpp - written and placed in the public domain by Wei Dai // blumshub.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "blumshub.h" #include "blumshub.h"

View File

@ -1,4 +1,4 @@
// blumshub.h - written and placed in the public domain by Wei Dai // blumshub.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile blumshub.h //! \headerfile blumshub.h

View File

@ -1,4 +1,4 @@
// camellia.h - written and placed in the public domain by Wei Dai // camellia.h - originally written and placed in the public domain by Wei Dai
//! \file camellia.h //! \file camellia.h
//! \brief Classes for the Cameliia block cipher //! \brief Classes for the Cameliia block cipher

View File

@ -1,4 +1,4 @@
// cast.cpp - written and placed in the public domain by Wei Dai and Leonard Janke // cast.cpp - originally written and placed in the public domain by Wei Dai and Leonard Janke
// based on Steve Reid's public domain cast.c // based on Steve Reid's public domain cast.c
#include "pch.h" #include "pch.h"

2
cast.h
View File

@ -1,4 +1,4 @@
// cast.h - written and placed in the public domain by Wei Dai // cast.h - originally written and placed in the public domain by Wei Dai
//! \file cast.h //! \file cast.h
//! \brief Classes for the CAST-128 and CAST-256 block ciphers //! \brief Classes for the CAST-128 and CAST-256 block ciphers

View File

@ -1,4 +1,4 @@
// cbcmac.h - written and placed in the public domain by Wei Dai // cbcmac.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile cbcmac.h //! \headerfile cbcmac.h

View File

@ -1,4 +1,4 @@
// ccm.cpp - written and placed in the public domain by Wei Dai // ccm.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
ccm.h
View File

@ -1,4 +1,4 @@
// ccm.h - written and placed in the public domain by Wei Dai // ccm.h - originally written and placed in the public domain by Wei Dai
//! \file ccm.h //! \file ccm.h
//! \brief CCM block cipher mode of operation //! \brief CCM block cipher mode of operation

View File

@ -1,4 +1,4 @@
// channels.cpp - written and placed in the public domain by Wei Dai // channels.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// channels.h - written and placed in the public domain by Wei Dai // channels.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile channels.h //! \headerfile channels.h

View File

@ -1,4 +1,4 @@
// cmac.cpp - written and placed in the public domain by Wei Dai // cmac.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
cmac.h
View File

@ -1,4 +1,4 @@
// cmac.h - written and placed in the public domain by Wei Dai // cmac.h - originally written and placed in the public domain by Wei Dai
//! \file cmac.h //! \file cmac.h
//! \brief Classes for CMAC message authentication code //! \brief Classes for CMAC message authentication code

View File

@ -1,4 +1,4 @@
// config.h - written and placed in the public domain by Wei Dai // config.h - originally written and placed in the public domain by Wei Dai
//! \file config.h //! \file config.h
//! \brief Library configuration file //! \brief Library configuration file

View File

@ -1,4 +1,4 @@
// cpu.cpp - written and placed in the public domain by Wei Dai // cpu.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

2
cpu.h
View File

@ -1,4 +1,4 @@
// cpu.h - written and placed in the public domain by Wei Dai // cpu.h - originally written and placed in the public domain by Wei Dai
// updated for ARM by Jeffrey Walton // updated for ARM by Jeffrey Walton
//! \file cpu.h //! \file cpu.h

View File

@ -1,4 +1,4 @@
// crc.cpp - written and placed in the public domain by Wei Dai // crc.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "crc.h" #include "crc.h"

2
crc.h
View File

@ -1,4 +1,4 @@
// crc.h - written and placed in the public domain by Wei Dai // crc.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile crc.h //! \headerfile crc.h

View File

@ -1,4 +1,4 @@
// cryptlib.cpp - written and placed in the public domain by Wei Dai // cryptlib.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// cryptlib.h - written and placed in the public domain by Wei Dai // cryptlib.h - originally written and placed in the public domain by Wei Dai
//! \file cryptlib.h //! \file cryptlib.h
//! \brief Abstract base classes that provide a uniform interface to this library. //! \brief Abstract base classes that provide a uniform interface to this library.

View File

@ -1,4 +1,4 @@
// datatest.cpp - written and placed in the public domain by Wei Dai // datatest.cpp - originally written and placed in the public domain by Wei Dai
#define CRYPTOPP_DEFAULT_NO_DLL #define CRYPTOPP_DEFAULT_NO_DLL
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1 #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1

View File

@ -1,4 +1,4 @@
// default.cpp - written and placed in the public domain by Wei Dai // default.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// default.h - written and placed in the public domain by Wei Dai // default.h - originally written and placed in the public domain by Wei Dai
//! \file default.h //! \file default.h
//! \brief Classes for DefaultEncryptor, DefaultDecryptor, DefaultEncryptorWithMAC and DefaultDecryptorWithMAC //! \brief Classes for DefaultEncryptor, DefaultDecryptor, DefaultEncryptorWithMAC and DefaultDecryptorWithMAC

2
des.h
View File

@ -1,4 +1,4 @@
// des.h - written and placed in the public domain by Wei Dai // des.h - originally written and placed in the public domain by Wei Dai
//! \file des.h //! \file des.h
//! \brief Classes for DES, 2-key Triple-DES, 3-key Triple-DES and DESX //! \brief Classes for DES, 2-key Triple-DES, 3-key Triple-DES and DESX

2
dh.cpp
View File

@ -1,4 +1,4 @@
// dh.cpp - written and placed in the public domain by Wei Dai // dh.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
dh.h
View File

@ -1,4 +1,4 @@
// dh.h - written and placed in the public domain by Wei Dai // dh.h - originally written and placed in the public domain by Wei Dai
//! \file dh.h //! \file dh.h
//! \brief Classes for Diffie-Hellman key exchange //! \brief Classes for Diffie-Hellman key exchange

View File

@ -1,4 +1,4 @@
// dh2.cpp - written and placed in the public domain by Wei Dai // dh2.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "dh2.h" #include "dh2.h"

2
dh2.h
View File

@ -1,4 +1,4 @@
// dh2.h - written and placed in the public domain by Wei Dai // dh2.h - originally written and placed in the public domain by Wei Dai
//! \file dh2.h //! \file dh2.h
//! \brief Classes for Unified Diffie-Hellman key exchange //! \brief Classes for Unified Diffie-Hellman key exchange

View File

@ -1,4 +1,4 @@
// dll.cpp - written and placed in the public domain by Wei Dai // dll.cpp - originally written and placed in the public domain by Wei Dai
#define CRYPTOPP_MANUALLY_INSTANTIATE_TEMPLATES #define CRYPTOPP_MANUALLY_INSTANTIATE_TEMPLATES
#define CRYPTOPP_DEFAULT_NO_DLL #define CRYPTOPP_DEFAULT_NO_DLL

2
dll.h
View File

@ -1,4 +1,4 @@
// dll.h - written and placed in the public domain by Wei Dai // dll.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile dll.h //! \headerfile dll.h

2
dmac.h
View File

@ -1,4 +1,4 @@
// dmac.h - written and placed in the public domain by Wei Dai // dmac.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile dmac.h //! \headerfile dmac.h

View File

@ -1,4 +1,4 @@
// dsa.cpp - written and placed in the public domain by Wei Dai // dsa.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
dsa.h
View File

@ -1,4 +1,4 @@
// dsa.h - written and placed in the public domain by Wei Dai // dsa.h - originally written and placed in the public domain by Wei Dai
//! \file dsa.h //! \file dsa.h
//! \brief Classes for the DSA signature algorithm //! \brief Classes for the DSA signature algorithm

View File

@ -1,4 +1,4 @@
// eax.cpp - written and placed in the public domain by Wei Dai // eax.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "eax.h" #include "eax.h"

2
eax.h
View File

@ -1,4 +1,4 @@
// eax.h - written and placed in the public domain by Wei Dai // eax.h - originally written and placed in the public domain by Wei Dai
//! \file eax.h //! \file eax.h
//! \brief EAX block cipher mode of operation //! \brief EAX block cipher mode of operation

View File

@ -1,4 +1,4 @@
// ec2n.cpp - written and placed in the public domain by Wei Dai // ec2n.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
ec2n.h
View File

@ -1,4 +1,4 @@
// ec2n.h - written and placed in the public domain by Wei Dai // ec2n.h - originally written and placed in the public domain by Wei Dai
//! \file //! \file
//! \headerfile ec2n.h //! \headerfile ec2n.h

View File

@ -1,4 +1,4 @@
// eccrypto.cpp - written and placed in the public domain by Wei Dai // eccrypto.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// eccrypto.h - written and placed in the public domain by Wei Dai // eccrypto.h - originally written and placed in the public domain by Wei Dai
// deterministic signatures added by by Douglas Roark // deterministic signatures added by by Douglas Roark
//! \file eccrypto.h //! \file eccrypto.h

View File

@ -1,4 +1,4 @@
// ecp.cpp - written and placed in the public domain by Wei Dai // ecp.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
ecp.h
View File

@ -1,4 +1,4 @@
// ecp.h - written and placed in the public domain by Wei Dai // ecp.h - originally written and placed in the public domain by Wei Dai
//! \file ecp.h //! \file ecp.h
//! \brief Classes for Elliptic Curves over prime fields //! \brief Classes for Elliptic Curves over prime fields

View File

@ -1,4 +1,4 @@
// elgamal.cpp - written and placed in the public domain by Wei Dai // elgamal.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "elgamal.h" #include "elgamal.h"

View File

@ -1,4 +1,4 @@
// elgamal.h - written and placed in the public domain by Wei Dai // elgamal.h - originally written and placed in the public domain by Wei Dai
//! \file elgamal.h //! \file elgamal.h
//! \brief Classes and functions for ElGamal key agreement and encryption schemes //! \brief Classes and functions for ElGamal key agreement and encryption schemes

View File

@ -1,4 +1,4 @@
// emsa2.cpp - written and placed in the public domain by Wei Dai // emsa2.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "emsa2.h" #include "emsa2.h"

View File

@ -1,4 +1,4 @@
// emsa2.h - written and placed in the public domain by Wei Dai // emsa2.h - originally written and placed in the public domain by Wei Dai
//! \file emsa2.h //! \file emsa2.h
//! \brief Classes and functions for various padding schemes used in public key algorithms //! \brief Classes and functions for various padding schemes used in public key algorithms

View File

@ -1,4 +1,4 @@
// eprecomp.cpp - written and placed in the public domain by Wei Dai // eprecomp.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// eprecomp.h - written and placed in the public domain by Wei Dai // eprecomp.h - originally written and placed in the public domain by Wei Dai
//! \file eprecomp.h //! \file eprecomp.h
//! \brief Classes for precomputation in a group //! \brief Classes for precomputation in a group

View File

@ -1,4 +1,4 @@
// esign.cpp - written and placed in the public domain by Wei Dai // esign.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// esign.h - written and placed in the public domain by Wei Dai // esign.h - originally written and placed in the public domain by Wei Dai
//! \file esign.h //! \file esign.h
//! \brief Classes providing ESIGN signature schemes as defined in IEEE P1363a //! \brief Classes providing ESIGN signature schemes as defined in IEEE P1363a

View File

@ -1,4 +1,4 @@
// factory.h - written and placed in the public domain by Wei Dai // factory.h - originally written and placed in the public domain by Wei Dai
//! \file factory.h //! \file factory.h
//! \brief Classes and functions for registering and locating library objects //! \brief Classes and functions for registering and locating library objects

View File

@ -1,4 +1,4 @@
// files.cpp - written and placed in the public domain by Wei Dai // files.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// files.h - written and placed in the public domain by Wei Dai // files.h - originally written and placed in the public domain by Wei Dai
//! \file files.h //! \file files.h
//! \brief Classes providing file-based library services //! \brief Classes providing file-based library services

View File

@ -1,4 +1,4 @@
// filters.cpp - written and placed in the public domain by Wei Dai // filters.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// filters.h - written and placed in the public domain by Wei Dai // filters.h - originally written and placed in the public domain by Wei Dai
//! \file filters.h //! \file filters.h
//! \brief Implementation of BufferedTransformation's attachment interface. //! \brief Implementation of BufferedTransformation's attachment interface.

View File

@ -1,4 +1,4 @@
// fips140.cpp - written and placed in the public domain by Wei Dai // fips140.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

View File

@ -1,4 +1,4 @@
// fips140.h - written and placed in the public domain by Wei Dai // fips140.h - originally written and placed in the public domain by Wei Dai
//! \file fips140.h //! \file fips140.h
//! \brief Classes and functions for the FIPS 140-2 validated library //! \brief Classes and functions for the FIPS 140-2 validated library

View File

@ -1,4 +1,4 @@
// fipsalgt.cpp - written and placed in the public domain by Wei Dai // fipsalgt.cpp - originally written and placed in the public domain by Wei Dai
// This file implements the various algorithm tests needed to pass FIPS 140 validation. // This file implements the various algorithm tests needed to pass FIPS 140 validation.
// They're preserved here (commented out) in case Crypto++ needs to be revalidated. // They're preserved here (commented out) in case Crypto++ needs to be revalidated.

View File

@ -1,4 +1,4 @@
// fipstest.cpp - written and placed in the public domain by Wei Dai // fipstest.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// gcm.cpp - written and placed in the public domain by Wei Dai // gcm.cpp - originally written and placed in the public domain by Wei Dai
// ARM and Aarch64 added by Jeffrey Walton. The ARM carryless // ARM and Aarch64 added by Jeffrey Walton. The ARM carryless
// multiply routines are less efficient because they shadowed x86. // multiply routines are less efficient because they shadowed x86.
// The precomputed key table integration makes it tricky to use the // The precomputed key table integration makes it tricky to use the

2
gcm.h
View File

@ -1,4 +1,4 @@
// gcm.h - written and placed in the public domain by Wei Dai // gcm.h - originally written and placed in the public domain by Wei Dai
//! \file gcm.h //! \file gcm.h
//! \brief GCM block cipher mode of operation //! \brief GCM block cipher mode of operation

View File

@ -1,4 +1,4 @@
// gf256.cpp - written and placed in the public domain by Wei Dai // gf256.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "gf256.h" #include "gf256.h"

View File

@ -1,4 +1,4 @@
// gf256.h - written and placed in the public domain by Wei Dai // gf256.h - originally written and placed in the public domain by Wei Dai
//! \file gf256.h //! \file gf256.h
//! \brief Classes and functions for schemes over GF(256) //! \brief Classes and functions for schemes over GF(256)

View File

@ -1,4 +1,4 @@
// gf2_32.cpp - written and placed in the public domain by Wei Dai // gf2_32.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "misc.h" #include "misc.h"

View File

@ -1,4 +1,4 @@
// gf2_32.h - written and placed in the public domain by Wei Dai // gf2_32.h - originally written and placed in the public domain by Wei Dai
//! \file gf2_32.h //! \file gf2_32.h
//! \brief Classes and functions for schemes over GF(2^32) //! \brief Classes and functions for schemes over GF(2^32)

View File

@ -1,4 +1,4 @@
// gf2n.cpp - written and placed in the public domain by Wei Dai // gf2n.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

2
gf2n.h
View File

@ -1,4 +1,4 @@
// gf2n.h - written and placed in the public domain by Wei Dai // gf2n.h - originally written and placed in the public domain by Wei Dai
//! \file gf2n.h //! \file gf2n.h
//! \brief Classes and functions for schemes over GF(2^n) //! \brief Classes and functions for schemes over GF(2^n)

View File

@ -1,4 +1,4 @@
// dsa.cpp - written and placed in the public domain by Wei Dai // dsa.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,4 @@
// gfpcrypt.h - written and placed in the public domain by Wei Dai // gfpcrypt.h - originally written and placed in the public domain by Wei Dai
// RFC6979 deterministic signatures (DL_Algorithm_DSA_RFC6979) added by by Douglas Roark // RFC6979 deterministic signatures (DL_Algorithm_DSA_RFC6979) added by by Douglas Roark
// ECGDSA (DL_Algorithm_GDSA_ISO15946) added by Jeffrey Walton // ECGDSA (DL_Algorithm_GDSA_ISO15946) added by Jeffrey Walton

2
gost.h
View File

@ -1,4 +1,4 @@
// gost.h - written and placed in the public domain by Wei Dai // gost.h - originally written and placed in the public domain by Wei Dai
//! \file gost.h //! \file gost.h
//! \brief Classes for the GIST block cipher //! \brief Classes for the GIST block cipher

View File

@ -1,4 +1,4 @@
// gzip.cpp - written and placed in the public domain by Wei Dai // gzip.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "gzip.h" #include "gzip.h"

2
gzip.h
View File

@ -1,4 +1,4 @@
// gzip.h - written and placed in the public domain by Wei Dai // gzip.h - originally written and placed in the public domain by Wei Dai
//! \file gzip.h //! \file gzip.h
//! \brief GZIP compression and decompression (RFC 1952) //! \brief GZIP compression and decompression (RFC 1952)

View File

@ -1,4 +1,4 @@
// hex.cpp - written and placed in the public domain by Wei Dai // hex.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
hex.h
View File

@ -1,4 +1,4 @@
// hex.h - written and placed in the public domain by Wei Dai // hex.h - originally written and placed in the public domain by Wei Dai
//! \file hex.h //! \file hex.h
//! \brief Classes for HexEncoder and HexDecoder //! \brief Classes for HexEncoder and HexDecoder

View File

@ -1,4 +1,4 @@
// hmac.cpp - written and placed in the public domain by Wei Dai // hmac.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"

2
hmac.h
View File

@ -1,4 +1,4 @@
// hmac.h - written and placed in the public domain by Wei Dai // hmac.h - originally written and placed in the public domain by Wei Dai
//! \file hmac.h //! \file hmac.h
//! \brief Classes for HMAC message authentication codes //! \brief Classes for HMAC message authentication codes

View File

@ -1,4 +1,4 @@
// hrtimer.cpp - written and placed in the public domain by Wei Dai // hrtimer.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "hrtimer.h" #include "hrtimer.h"

View File

@ -1,4 +1,4 @@
// ida.cpp - written and placed in the public domain by Wei Dai // ida.cpp - originally written and placed in the public domain by Wei Dai
#include "pch.h" #include "pch.h"
#include "config.h" #include "config.h"

Some files were not shown because too many files have changed in this diff Show More