blob: c97196e80c26353391b6e3250d62de556c8a3862 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#ifndef OPENSSL_HEADER_ENGINE_H
16#define OPENSSL_HEADER_ENGINE_H
17
18#include <openssl/base.h>
19
20#if defined(__cplusplus)
21extern "C" {
22#endif
23
24
25/* Engines are collections of methods. Methods are tables of function pointers,
26 * defined for certain algorithms, that allow operations on those algorithms to
27 * be overridden via a callback. This can be used, for example, to implement an
28 * RSA* that forwards operations to a hardware module.
29 *
30 * Methods are reference counted but |ENGINE|s are not. When creating a method,
31 * you should zero the whole structure and fill in the function pointers that
32 * you wish before setting it on an |ENGINE|. Any functions pointers that
33 * are NULL indicate that the default behaviour should be used. */
34
35
36/* Allocation and destruction. */
37
38/* ENGINE_new returns an empty ENGINE that uses the default method for all
39 * algorithms. */
40ENGINE *ENGINE_new();
41
42/* ENGINE_free decrements the reference counts for all methods linked from
43 * |engine| and frees |engine| itself. */
44void ENGINE_free(ENGINE *engine);
45
46
47/* Method accessors.
48 *
49 * Method accessors take a method pointer and the size of the structure. The
50 * size allows for ABI compatibility in the case that the method structure is
51 * extended with extra elements at the end. Methods are always copied by the
52 * set functions.
53 *
54 * Set functions return one on success and zero on allocation failure. */
55
56int ENGINE_set_DH_method(ENGINE *engine, const DH_METHOD *method,
57 size_t method_size);
58DH_METHOD *ENGINE_get_DH_method(const ENGINE *engine);
59
60int ENGINE_set_DSA_method(ENGINE *engine, const DSA_METHOD *method,
61 size_t method_size);
62DSA_METHOD *ENGINE_get_DSA_method(const ENGINE *engine);
63
64int ENGINE_set_RSA_method(ENGINE *engine, const RSA_METHOD *method,
65 size_t method_size);
66RSA_METHOD *ENGINE_get_RSA_method(const ENGINE *engine);
67
68int ENGINE_set_ECDSA_method(ENGINE *engine, const ECDSA_METHOD *method,
69 size_t method_size);
70ECDSA_METHOD *ENGINE_get_ECDSA_method(const ENGINE *engine);
71
72
73/* Generic method functions.
74 *
75 * These functions take a void* type but actually operate on all method
76 * structures. */
77
78/* METHOD_ref increments the reference count of |method|. */
79void METHOD_ref(void *method);
80
81/* METHOD_unref decrements the reference count of |method| and frees it if the
82 * reference count drops to zero. */
83void METHOD_unref(void *method);
84
85
86/* Private functions. */
87
88/* openssl_method_common_st contains the common part of all method structures.
89 * This must be the first member of all method structures. */
90struct openssl_method_common_st {
91 int references;
92 char is_static;
93};
94
95
96#if defined(__cplusplus)
97} /* extern C */
98#endif
99
100#endif /* OPENSSL_HEADER_ENGINE_H */