Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 1 | -5/+5 |
| | | | | | | as was done earlier in libssl. Thanks inoguchi@ for noticing libssl had more reacharounds into this. ok jsing@ inoguchi@ | ||||
* | Switch to the ISC licensed versions of these files, which Google has made | jsing | 2014-06-21 | 1 | -54/+13 |
| | | | | | | available via boringssl. ok deraadt@ | ||||
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -0/+1 |
| | |||||
* | Implement an improved version of the EVP AEAD API. The | jsing | 2014-05-26 | 1 | -29/+21 |
| | | | | | | | | | | | | | | | | EVP_AEAD_CTX_{open,seal} functions previously returned an ssize_t that was overloaded to indicate success/failure, along with the number of bytes written as output. This change adds an explicit *out_len argument which is used to return the number of output bytes and the return value is now an int that is purely used to identify success or failure. This change effectively rides the last libcrypto crank (although I do not expect there to be many users of the EVP AEAD API currently). Thanks to Adam Langley for providing the improved code that this diff is based on. ok miod@ | ||||
* | KNF. | jsing | 2014-05-15 | 1 | -64/+64 |
| | |||||
* | Add an AEAD EVP interface to libcrypto, along with AES-GCM AEAD | jsing | 2014-05-15 | 1 | -0/+192 |
implementations. This largely pulls in Adam Langley's AEAD patches from Chromium's OpenSSL. ok miod@ |