]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/engine/tb_dsa.c
GH1546: Fix old names in cryptodev code.
[thirdparty/openssl.git] / crypto / engine / tb_dsa.c
CommitLineData
b1322259
RS
1/*
2 * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
354c3ace 3 *
b1322259
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
354c3ace
BL
8 */
9
14cfde9c 10#include "eng_int.h"
354c3ace 11
b6d1e52d
GT
12static ENGINE_TABLE *dsa_table = NULL;
13static const int dummy_nid = 1;
354c3ace 14
b6d1e52d 15void ENGINE_unregister_DSA(ENGINE *e)
0f113f3e
MC
16{
17 engine_table_unregister(&dsa_table, e);
18}
354c3ace 19
6d52f260 20static void engine_unregister_all_DSA(void)
0f113f3e
MC
21{
22 engine_table_cleanup(&dsa_table);
23}
354c3ace 24
b6d1e52d 25int ENGINE_register_DSA(ENGINE *e)
0f113f3e
MC
26{
27 if (e->dsa_meth)
28 return engine_table_register(&dsa_table,
29 engine_unregister_all_DSA, e, &dummy_nid,
30 1, 0);
31 return 1;
32}
354c3ace 33
b6d1e52d 34void ENGINE_register_all_DSA()
0f113f3e
MC
35{
36 ENGINE *e;
354c3ace 37
0f113f3e
MC
38 for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e))
39 ENGINE_register_DSA(e);
40}
354c3ace 41
b6d1e52d 42int ENGINE_set_default_DSA(ENGINE *e)
0f113f3e
MC
43{
44 if (e->dsa_meth)
45 return engine_table_register(&dsa_table,
46 engine_unregister_all_DSA, e, &dummy_nid,
47 1, 1);
48 return 1;
49}
0e360199 50
0f113f3e
MC
51/*
52 * Exposed API function to get a functional reference from the implementation
b6d1e52d 53 * table (ie. try to get a functional reference from the tabled structural
0f113f3e
MC
54 * references).
55 */
b6d1e52d 56ENGINE *ENGINE_get_default_DSA(void)
0f113f3e
MC
57{
58 return engine_table_select(&dsa_table, dummy_nid);
59}
0e360199 60
b6d1e52d
GT
61/* Obtains an DSA implementation from an ENGINE functional reference */
62const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e)
0f113f3e
MC
63{
64 return e->dsa_meth;
65}
0e360199 66
b6d1e52d
GT
67/* Sets an DSA implementation in an ENGINE structure */
68int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth)
0f113f3e
MC
69{
70 e->dsa_meth = dsa_meth;
71 return 1;
72}