blob: 5b0a384245903d9e74cddb43aed947d8f0d43317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef HMAC_CRAM_MD5_H
#define HMAC_CRAM_MD5_H
#include "hmac.h"
#define CRAM_MD5_CONTEXTLEN 32
void hmac_md5_get_cram_context(struct hmac_context *ctx,
unsigned char context_digest[CRAM_MD5_CONTEXTLEN]);
void hmac_md5_set_cram_context(struct hmac_context *ctx,
const unsigned char context_digest[CRAM_MD5_CONTEXTLEN]);
#endif
|