summaryrefslogtreecommitdiff
path: root/gcm.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix clang warnings (GH #771)Marcel Raad2019-01-021-1/+1
|
* Add CRYPTOPP_DISABLE_MIXED_ASM define and feature test (GH #756, PR #757)Jeffrey Walton2018-12-051-1/+1
|
* Disable X32 inline assembly (GH #686, PR #704)Jeffrey Walton2018-08-181-0/+6
| | | Also use CRYPTOPP_DISABLE_XXX_ASM consistently. The pattern is needed for Clang which still can't compile Intel assembly language. Also see http://llvm.org/bugs/show_bug.cgi?id=24232.
* Add algorithm provider member function to Algorithm classJeffrey Walton2018-07-061-0/+2
|
* Remove unneeded Doxygen directiveJeffrey Walton2018-01-191-3/+0
|
* Change Doxygen comment style from //! to ///Jeffrey Walton2017-11-291-27/+27
| | | | Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw
* Update documentationJeffrey Walton2017-11-181-1/+3
|
* Revert 95ee8975b4fc and 7d21cdd54e95 (Issue 408)Jeffrey Walton2017-08-131-3/+3
| | | | This broke some OS X builds. We need more testing. Ugh...
* Convert GCM to use runtime blocksize checking (Issue 408)Jeffrey Walton2017-08-121-3/+3
| | | | GCM is still only defined for 16-byte ciphers, but this is where we need to be when we add the larger polynomials
* Change file preamble to include "originally written by Wei Dai"Jeffrey Walton2017-01-271-1/+1
| | | | We have made a fair number of changes, and we don't want WD to receive credit for issues he was not part of
* Updated documentationJeffrey Walton2016-09-101-0/+4
|
* Updated documentationJeffrey Walton2016-01-291-1/+2
|
* Updated documentationJeffrey Walton2016-01-291-11/+11
|
* Cleared issues 11,12,13 (Clang integrated assembler), 58 (RC rollup), 66 ↵Jeffrey Walton2015-11-181-4/+25
| | | | (Coverity rollup)
* add support for AES-NI and CLMUL instruction sets in AES and GMAC/GCMweidai2010-07-241-0/+1
|
* add "volatile" to prevent compiler optimizing away codeweidai2010-06-181-2/+2
|
* - add EAX mode, XSalsa20weidai2009-03-121-1/+1
| | | | | | - speed up GCM key setup - wipe stack in AES assembly code - speed up CFB mode
* changes for 5.6: weidai2009-03-021-0/+105
- added AuthenticatedSymmetricCipher interface class and Filter wrappers - added CCM, GCM (with SSE2 assembly), CMAC, and SEED - improved AES speed on x86 and x64 - removed WORD64_AVAILABLE; compiler 64-bit int support is now required