summaryrefslogtreecommitdiff
path: root/libavutil/hmac.h
Commit message (Collapse)AuthorAge
* lavu/hmac: remove deprecated type idsHendrik Leppkes2015-09-05
|
* avutil/hmac: fix API/ABI compatibility with the forkJames Almer2015-07-29
| | | | | | | | | | The test code is updated with some cosmetics to avoid the loop using undefined AVHMACType values. The old enum values will be removed in the next major bump, effectively making both projects synced and without API or ABI issues. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
* avutil/hmac: support another ABI difference to the forkMichael Niedermayer2015-07-30
| | | | | | spotted this and so adding it. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavu/hmac: Add support for SHA-2James Almer2013-06-12
| | | | | | | | Includes HMAC-SHA-224, HMAC-SHA-256, HMAC-SHA-384, and HMAC-SHA-512. Tested using test vectors from https://tools.ietf.org/html/rfc4231 Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit 'ab2ad8bd56882c0ea160b154e8b836eb71abc49d'Michael Niedermayer2013-01-15
| | | | | | | | | | | | * commit 'ab2ad8bd56882c0ea160b154e8b836eb71abc49d': lavf: Add functions for SRTP decryption/encryption lavu: Add an API for calculating HMAC (RFC 2104) Conflicts: doc/APIchanges libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
* lavu: Add an API for calculating HMAC (RFC 2104)Martin Storsjö2013-01-15
This supports HMAC-MD5 and HMAC-SHA1 for now, other hashes are simple to add. Signed-off-by: Martin Storsjö <martin@martin.st>