FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
hmac.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Martin Storsjo
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include <string.h>
22 
23 #include "attributes.h"
24 #include "hmac.h"
25 #include "md5.h"
26 #include "sha.h"
27 #include "sha512.h"
28 #include "mem.h"
29 
30 #define MAX_HASHLEN 64
31 #define MAX_BLOCKLEN 128
32 
33 struct AVHMAC {
34  void *hash;
36  void (*final)(void*, uint8_t*);
37  void (*update)(void*, const uint8_t*, int len);
38  void (*init)(void*);
40  int keylen;
41 };
42 
43 #define DEFINE_SHA(bits) \
44 static av_cold void sha ## bits ##_init(void *ctx) \
45 { \
46  av_sha_init(ctx, bits); \
47 }
48 
49 #define DEFINE_SHA512(bits) \
50 static av_cold void sha ## bits ##_init(void *ctx) \
51 { \
52  av_sha512_init(ctx, bits); \
53 }
54 
55 DEFINE_SHA(160)
56 DEFINE_SHA(224)
57 DEFINE_SHA(256)
58 DEFINE_SHA512(384)
59 DEFINE_SHA512(512)
60 
62 {
63  AVHMAC *c = av_mallocz(sizeof(*c));
64  if (!c)
65  return NULL;
66  switch (type) {
67  case AV_HMAC_MD5:
68  c->blocklen = 64;
69  c->hashlen = 16;
70  c->init = (void*)av_md5_init;
71  c->update = (void*)av_md5_update;
72  c->final = (void*)av_md5_final;
73  c->hash = av_md5_alloc();
74  break;
75  case AV_HMAC_SHA1:
76  c->blocklen = 64;
77  c->hashlen = 20;
78  c->init = sha160_init;
79  c->update = (void*)av_sha_update;
80  c->final = (void*)av_sha_final;
81  c->hash = av_sha_alloc();
82  break;
83  case AV_HMAC_SHA224:
84  c->blocklen = 64;
85  c->hashlen = 28;
86  c->init = sha224_init;
87  c->update = (void*)av_sha_update;
88  c->final = (void*)av_sha_final;
89  c->hash = av_sha_alloc();
90  break;
91  case AV_HMAC_SHA256:
92  c->blocklen = 64;
93  c->hashlen = 32;
94  c->init = sha256_init;
95  c->update = (void*)av_sha_update;
96  c->final = (void*)av_sha_final;
97  c->hash = av_sha_alloc();
98  break;
99  case AV_HMAC_SHA384:
100  c->blocklen = 128;
101  c->hashlen = 48;
102  c->init = sha384_init;
103  c->update = (void*)av_sha512_update;
104  c->final = (void*)av_sha512_final;
105  c->hash = av_sha512_alloc();
106  break;
107  case AV_HMAC_SHA512:
108  c->blocklen = 128;
109  c->hashlen = 64;
110  c->init = sha512_init;
111  c->update = (void*)av_sha512_update;
112  c->final = (void*)av_sha512_final;
113  c->hash = av_sha512_alloc();
114  break;
115  default:
116  av_free(c);
117  return NULL;
118  }
119  if (!c->hash) {
120  av_free(c);
121  return NULL;
122  }
123  return c;
124 }
125 
127 {
128  if (!c)
129  return;
130  av_freep(&c->hash);
131  av_free(c);
132 }
133 
134 void av_hmac_init(AVHMAC *c, const uint8_t *key, unsigned int keylen)
135 {
136  int i;
138  if (keylen > c->blocklen) {
139  c->init(c->hash);
140  c->update(c->hash, key, keylen);
141  c->final(c->hash, c->key);
142  c->keylen = c->hashlen;
143  } else {
144  memcpy(c->key, key, keylen);
145  c->keylen = keylen;
146  }
147  c->init(c->hash);
148  for (i = 0; i < c->keylen; i++)
149  block[i] = c->key[i] ^ 0x36;
150  for (i = c->keylen; i < c->blocklen; i++)
151  block[i] = 0x36;
152  c->update(c->hash, block, c->blocklen);
153 }
154 
155 void av_hmac_update(AVHMAC *c, const uint8_t *data, unsigned int len)
156 {
157  c->update(c->hash, data, len);
158 }
159 
160 int av_hmac_final(AVHMAC *c, uint8_t *out, unsigned int outlen)
161 {
163  int i;
164  if (outlen < c->hashlen)
165  return AVERROR(EINVAL);
166  c->final(c->hash, out);
167  c->init(c->hash);
168  for (i = 0; i < c->keylen; i++)
169  block[i] = c->key[i] ^ 0x5C;
170  for (i = c->keylen; i < c->blocklen; i++)
171  block[i] = 0x5C;
172  c->update(c->hash, block, c->blocklen);
173  c->update(c->hash, out, c->hashlen);
174  c->final(c->hash, out);
175  return c->hashlen;
176 }
177 
178 int av_hmac_calc(AVHMAC *c, const uint8_t *data, unsigned int len,
179  const uint8_t *key, unsigned int keylen,
180  uint8_t *out, unsigned int outlen)
181 {
182  av_hmac_init(c, key, keylen);
183  av_hmac_update(c, data, len);
184  return av_hmac_final(c, out, outlen);
185 }
186 
187 #ifdef TEST
188 #include <stdio.h>
189 
190 static void test(AVHMAC *hmac, const uint8_t *key, int keylen,
191  const uint8_t *data, int datalen)
192 {
194  int out, i;
195  // Some of the test vectors are strings, where sizeof() includes the
196  // trailing null byte - remove that.
197  if (!key[keylen - 1])
198  keylen--;
199  if (!data[datalen - 1])
200  datalen--;
201  out = av_hmac_calc(hmac, data, datalen, key, keylen, buf, sizeof(buf));
202  for (i = 0; i < out; i++)
203  printf("%02x", buf[i]);
204  printf("\n");
205 }
206 
207 int main(void)
208 {
209  uint8_t key1[20], key3[131], data3[50];
210  AVHMAC *hmac;
211  enum AVHMACType i;
212  static const uint8_t key2[] = "Jefe";
213  static const uint8_t data1[] = "Hi There";
214  static const uint8_t data2[] = "what do ya want for nothing?";
215  static const uint8_t data4[] = "Test Using Larger Than Block-Size Key - Hash Key First";
216  static const uint8_t data5[] = "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data";
217  static const uint8_t data6[] = "This is a test using a larger than block-size key and a larger "
218  "than block-size data. The key needs to be hashed before being used"
219  " by the HMAC algorithm.";
220  memset(key1, 0x0b, sizeof(key1));
221  memset(key3, 0xaa, sizeof(key3));
222  memset(data3, 0xdd, sizeof(data3));
223 
224  /* MD5, SHA-1 */
225  for (i = AV_HMAC_MD5; i <= AV_HMAC_SHA1; i++) {
226  hmac = av_hmac_alloc(i);
227  if (!hmac)
228  return 1;
229  // RFC 2202 test vectors
230  test(hmac, key1, hmac->hashlen, data1, sizeof(data1));
231  test(hmac, key2, sizeof(key2), data2, sizeof(data2));
232  test(hmac, key3, hmac->hashlen, data3, sizeof(data3));
233  test(hmac, key3, 80, data4, sizeof(data4));
234  test(hmac, key3, 80, data5, sizeof(data5));
235  av_hmac_free(hmac);
236  }
237 
238  /* SHA-2 */
239  for (i = AV_HMAC_SHA224; i <= AV_HMAC_SHA256; i++) {
240  hmac = av_hmac_alloc(i);
241  if (!hmac)
242  return 1;
243  // RFC 4231 test vectors
244  test(hmac, key1, sizeof(key1), data1, sizeof(data1));
245  test(hmac, key2, sizeof(key2), data2, sizeof(data2));
246  test(hmac, key3, 20, data3, sizeof(data3));
247  test(hmac, key3, sizeof(key3), data4, sizeof(data4));
248  test(hmac, key3, sizeof(key3), data6, sizeof(data6));
249  av_hmac_free(hmac);
250  }
251 
252  for (i = AV_HMAC_SHA384; i <= AV_HMAC_SHA512; i++) {
253  hmac = av_hmac_alloc(i);
254  if (!hmac)
255  return 1;
256  // RFC 4231 test vectors
257  test(hmac, key1, sizeof(key1), data1, sizeof(data1));
258  test(hmac, key2, sizeof(key2), data2, sizeof(data2));
259  test(hmac, key3, 20, data3, sizeof(data3));
260  test(hmac, key3, sizeof(key3), data4, sizeof(data4));
261  test(hmac, key3, sizeof(key3), data6, sizeof(data6));
262  av_hmac_free(hmac);
263  }
264  return 0;
265 }
266 #endif /* TEST */
void av_sha_final(AVSHA *ctx, uint8_t *digest)
Finish hashing and output digest value.
Definition: sha.c:341
#define NULL
Definition: coverity.c:32
int av_hmac_calc(AVHMAC *c, const uint8_t *data, unsigned int len, const uint8_t *key, unsigned int keylen, uint8_t *out, unsigned int outlen)
Hash an array of data with a key.
Definition: hmac.c:178
void av_sha_update(AVSHA *ctx, const uint8_t *data, unsigned int len)
Update hash value.
Definition: sha.c:314
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
AVHMAC * av_hmac_alloc(enum AVHMACType type)
Allocate an AVHMAC context.
Definition: hmac.c:61
memory handling functions
AVHMACType
Definition: hmac.h:33
void av_md5_update(AVMD5 *ctx, const uint8_t *src, int len)
Update hash value.
Definition: md5.c:148
Macro definitions for various function/variable attributes.
void * hash
Definition: hmac.c:34
struct AVMD5 * av_md5_alloc(void)
Allocate an AVMD5 context.
Definition: md5.c:47
uint8_t
void av_hmac_update(AVHMAC *c, const uint8_t *data, unsigned int len)
Hash data with the HMAC.
Definition: hmac.c:155
struct AVSHA512 * av_sha512_alloc(void)
Allocate an AVSHA512 context.
Definition: sha512.c:43
#define AVERROR(e)
Definition: error.h:43
int hashlen
Definition: hmac.c:35
int blocklen
Definition: hmac.c:35
static void test(const char *pattern, const char *host)
Definition: noproxy-test.c:23
Definition: hmac.c:33
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
void av_hmac_init(AVHMAC *c, const uint8_t *key, unsigned int keylen)
Initialize an AVHMAC context with an authentication key.
Definition: hmac.c:134
uint8_t key[MAX_BLOCKLEN]
Definition: hmac.c:39
FILE * out
Definition: movenc-test.c:54
void(* final)(void *, uint8_t *)
Definition: hmac.c:36
void av_sha512_update(AVSHA512 *ctx, const uint8_t *data, unsigned int len)
Update hash value.
Definition: sha512.c:242
#define MAX_HASHLEN
Definition: hmac.c:30
struct AVSHA * av_sha_alloc(void)
Allocate an AVSHA context.
Definition: sha.c:45
void av_md5_init(AVMD5 *ctx)
Initialize MD5 hashing.
Definition: md5.c:138
void * buf
Definition: avisynth_c.h:553
GLint GLenum type
Definition: opengl_enc.c:105
#define MAX_BLOCKLEN
Definition: hmac.c:31
void av_md5_final(AVMD5 *ctx, uint8_t *dst)
Finish hashing and output digest value.
Definition: md5.c:183
int av_hmac_final(AVHMAC *c, uint8_t *out, unsigned int outlen)
Finish hashing and output the HMAC digest.
Definition: hmac.c:160
void(* update)(void *, const uint8_t *, int len)
Definition: hmac.c:37
int keylen
Definition: hmac.c:40
#define DEFINE_SHA512(bits)
Definition: hmac.c:49
static double c[64]
void av_hmac_free(AVHMAC *c)
Free an AVHMAC context.
Definition: hmac.c:126
#define av_free(p)
int len
void av_sha512_final(AVSHA512 *ctx, uint8_t *digest)
Finish hashing and output digest value.
Definition: sha512.c:269
void(* init)(void *)
Definition: hmac.c:38
#define av_freep(p)
#define DEFINE_SHA(bits)
Definition: hmac.c:43
int main(int argc, char **argv)
Definition: main.c:22
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
for(j=16;j >0;--j)
static int16_t block[64]
Definition: dct-test.c:112