File: hmac.h

package info (click to toggle)
vzlogger 0.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,140 kB
  • sloc: cpp: 12,020; sh: 331; ansic: 157; makefile: 25
file content (12 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __hmac_h_
#define __hmac_h_

#include <stddef.h>

namespace vz {
void hmac_sha1(char *digest, const unsigned char *data, size_t dataLen,
			   const unsigned char *secretKey, size_t secretLen);

} // namespace vz

#endif