blob: 13824a5e63b282ce515915d6970a6dc568a5476d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* tsig-openssl.h -- Interface to OpenSSL for TSIG support.
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
*
* See LICENSE for the license.
*
*/
#ifndef TSIG_OPENSSL_H
#define TSIG_OPENSSL_H
#if defined(HAVE_SSL)
#include "region-allocator.h"
#include <openssl/hmac.h>
#include <openssl/sha.h>
/*
* Initialize OpenSSL support for TSIG.
*/
int tsig_openssl_init(region_type *region);
void tsig_openssl_finalize(void);
#endif /* defined(HAVE_SSL) */
#endif /* TSIG_OPENSSL_H */
|