summaryrefslogtreecommitdiffstats
path: root/modules/filters/mod_crypto.h
blob: e7e66fa187379c2f3058d43b3486bae07b01312f (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef _MOD_CRYPTO_H_
#define _MOD_CRYPTO_H_

/* Create a set of CRYPTO_DECLARE(type), CRYPTO_DECLARE_NONSTD(type) and
 * CRYPTO_DECLARE_DATA with appropriate export and import tags for the platform
 */
#if !defined(WIN32)
#define CRYPTO_DECLARE(type)        type
#define CRYPTO_DECLARE_NONSTD(type) type
#define CRYPTO_DECLARE_DATA
#elif defined(CRYPTO_DECLARE_STATIC)
#define CRYPTO_DECLARE(type)        type __stdcall
#define CRYPTO_DECLARE_NONSTD(type) type
#define CRYPTO_DECLARE_DATA
#elif defined(CRYPTO_DECLARE_EXPORT)
#define CRYPTO_DECLARE(type)        __declspec(dllexport) type __stdcall
#define CRYPTO_DECLARE_NONSTD(type) __declspec(dllexport) type
#define CRYPTO_DECLARE_DATA         __declspec(dllexport)
#else
#define CRYPTO_DECLARE(type)        __declspec(dllimport) type __stdcall
#define CRYPTO_DECLARE_NONSTD(type) __declspec(dllimport) type
#define CRYPTO_DECLARE_DATA         __declspec(dllimport)
#endif

/**
 * @file  mod_crypto.h
 * @brief Crypto Module for Apache
 *
 * @defgroup MOD_CRYPTO mod_crypto
 * @ingroup  APACHE_MODS
 * @{
 */

#include "apr.h"
#include "apr_hooks.h"
#include "apr_optional.h"
#include "apr_tables.h"
#include "apr_uuid.h"
#include "apr_pools.h"
#include "apr_time.h"
#include "apr_crypto.h"

#include "httpd.h"
#include "http_config.h"
#include "ap_config.h"

/**
 * Hook to provide a key.
 *
 * @param r The request
 * @param cipher The cipher to use with this key
 * @param rec Pointer to the key record from which to derive the key
 */
APR_DECLARE_EXTERNAL_HOOK(ap, CRYPTO, apr_status_t, crypto_key,
                          (request_rec *r,
                           apr_crypto_block_key_type_t * cipher,
                           apr_crypto_block_key_mode_t * mode, int pad,
                           const apr_crypto_key_rec_t ** rec));

/**
 * Hook to provide an initialization vector (IV).
 *
 * @param r The request
 * @param size The block size of the expected IV.
 * @param iv A pointer to where the iv will be returned
 */
APR_DECLARE_EXTERNAL_HOOK(ap, CRYPTO, apr_status_t, crypto_iv,
                          (request_rec *r,
                           apr_crypto_block_key_type_t * cipher,
                           const unsigned char **iv));

/**
 * The name of the module.
 */
extern module AP_MODULE_DECLARE_DATA crypto_module;

/** @} */

#endif