Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid crash in get_aead if handed a string with no slashes | lloyd | 2013-04-10 | 1 | -0/+3 |
| | |||||
* | Add AEAD_Mode::output_length | lloyd | 2013-04-10 | 4 | -0/+34 |
| | |||||
* | Lost get_aead decl in revert | lloyd | 2013-04-10 | 1 | -0/+5 |
| | |||||
* | Revert part of 5be6e329324fc8263de56167091754e27305917b, | lloyd | 2013-04-10 | 7 | -13/+14 |
| | | | | | | | AEAD_Mode::start now returns a value again. While not useful for any current modes it allows future flexibility of presenting protoocol-level concepts (eg, OpenPGP encryption) using the AEAD interface. | ||||
* | Remove return value of AEAD_Mode::start as it doesn't seem necessary | lloyd | 2013-04-03 | 8 | -14/+88 |
| | | | | | | | and is an extra complication for callers. Replace the get_aead in lookup.h returning a Filter with one in aead.h returning AEAD_Mode. | ||||
* | Add an offset to ignore at the start of the buffer in AEAD processing | lloyd | 2013-03-28 | 7 | -67/+117 |
| | | | | | | which makes more complicated packet building easier to do in-place. For instance now update can take a buffer that contains a header and be told to ignore the header. | ||||
* | Add nonce length checks to EAX and GCM | lloyd | 2013-03-28 | 2 | -0/+6 |
| | |||||
* | Compile fix | lloyd | 2013-03-27 | 1 | -1/+1 |
| | |||||
* | Allow tag sizes other than 128 bits in GCM and OCB | lloyd | 2013-03-27 | 1 | -1/+1 |
| | |||||
* | Add an AEAD_Filter that wraps an AEAD_Mode, plus various bug fixes. | lloyd | 2013-03-27 | 4 | -27/+46 |
| | |||||
* | Convert OCB to new AEAD interface | lloyd | 2013-03-27 | 4 | -1/+544 |
| | |||||
* | Move GCM to new AEAD interface | lloyd | 2013-03-27 | 7 | -15/+364 |
| | |||||
* | Move EAX to new AEAD_Mode interface | lloyd | 2013-03-20 | 5 | -0/+334 |