diff options
author | Martin Storsjö <martin@martin.st> | 2012-10-12 15:01:06 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-15 11:54:19 +0200 |
commit | 8ee288d2586f216aa698ef8e6d107f02c813ea06 (patch) | |
tree | e1b2957bdf7001262a7523cfb27ca5dc48af088e /libavutil/Makefile | |
parent | 47812070a267cbdf74164e154d03d99bf8ced100 (diff) | |
download | ffmpeg-8ee288d2586f216aa698ef8e6d107f02c813ea06.tar.gz |
lavu: Add an API for calculating HMAC (RFC 2104)
This supports HMAC-MD5 and HMAC-SHA1 for now, other hashes are
simple to add.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 48a0e16af3..79e67b50dd 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -19,6 +19,7 @@ HEADERS = adler32.h \ eval.h \ fifo.h \ file.h \ + hmac.h \ imgutils.h \ intfloat.h \ intfloat_readwrite.h \ @@ -66,6 +67,7 @@ OBJS = adler32.o \ fifo.o \ file.o \ float_dsp.o \ + hmac.o \ imgutils.o \ intfloat_readwrite.o \ intmath.o \ |