blob: e595b80c4cedd007385f83f0766dea3a85dc46e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef core_h2c_H
#define core_h2c_H
#include "private/quirks.h"
#define CORE_H2C_SHA256 1
#define CORE_H2C_SHA512 2
int core_h2c_string_to_hash(unsigned char *h, const size_t h_len, const char *ctx,
const unsigned char *msg, size_t msg_len,
int hash_alg);
#endif
|