aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/gcm
Commit message (Collapse)AuthorAgeFilesLines
* Use standard unsigned integer typesAndreas Steffen2016-03-241-2/+2
|
* utils: Use memeq_const() for all cryptographic purposesMartin Willi2015-04-141-1/+1
|
* plugins: Don't link with -rdynamic on WindowsMartin Willi2014-06-041-1/+1
|
* aead: Support custom AEAD salt sizesMartin Willi2014-03-312-2/+10
| | | | | | | | | The salt, or often called implicit nonce, varies between AEAD algorithms and their use in protocols. For IKE and ESP, GCM uses 4 bytes, while CCM uses 3 bytes. With TLS, however, AEAD mode uses 4 bytes for both GCM and CCM. Our GCM backends currently support 4 bytes and CCM 3 bytes only. This is fine until we go for CCM mode support in TLS, which requires 4 byte nonces.
* iv_gen: aead_t implementations provide an IV generatorTobias Brunner2013-10-111-0/+15
|
* automake: replace INCLUDES by AM_CPPFLAGSMartin Willi2013-07-181-3/+4
| | | | | | INCLUDES are now deprecated and throw warnings when using automake 1.13. We now also differentiate AM_CPPFLAGS and AM_CFLAGS, where includes and defines are passed to AM_CPPFLAGS only.
* Order of arguments in Doxygen comment fixedTobias Brunner2013-02-281-1/+1
|
* Add a return value to crypter_t.set_key()Martin Willi2012-07-161-2/+2
|
* Add a return value to crypter_t.encryptMartin Willi2012-07-161-32/+29
|
* Add a return value to aead_t.set_key()Martin Willi2012-07-161-1/+2
|
* Add a return value to aead_t.encrypt()Martin Willi2012-07-161-1/+2
|
* Add features support to gcm pluginMartin Willi2011-10-141-17/+29
|
* Added a (not yet implemented) plugin_t method to reload plugin configurationMartin Willi2011-04-151-0/+1
|
* Added a get_name() function to plugin_t, create_plugin_enumerator enumerates ↵Martin Willi2011-04-151-6/+15
| | | | over plugin_t
* Register algorithms with dependencies only if dependency availableMartin Willi2010-12-201-6/+12
|
* trace back crypto algorithms to the plugins that registered themAndreas Steffen2010-12-181-3/+5
|
* Fall back to shifting with 32-bit words if 64-bit byte order conversion ↵Martin Willi2010-08-231-10/+12
| | | | function missing
* Improve GCM performance by factor 2-3 by shifting full 32/64 bit wordsMartin Willi2010-08-191-5/+25
|
* Implemented a gcm plugin providing GCM mode based on CBC cryptersMartin Willi2010-08-195-0/+575