/src/gnutls/lib/crypto-backend.c
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  |  * Copyright (C) 2008-2012 Free Software Foundation, Inc.  | 
3  |  |  *  | 
4  |  |  * Author: Nikos Mavrogiannopoulos  | 
5  |  |  *  | 
6  |  |  * This file is part of GnuTLS.  | 
7  |  |  *  | 
8  |  |  * The GnuTLS is free software; you can redistribute it and/or  | 
9  |  |  * modify it under the terms of the GNU Lesser General Public License  | 
10  |  |  * as published by the Free Software Foundation; either version 2.1 of  | 
11  |  |  * the License, or (at your option) any later version.  | 
12  |  |  *  | 
13  |  |  * This library is distributed in the hope that it will be useful, but  | 
14  |  |  * WITHOUT ANY WARRANTY; without even the implied warranty of  | 
15  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  | 
16  |  |  * Lesser General Public License for more details.  | 
17  |  |  *  | 
18  |  |  * You should have received a copy of the GNU Lesser General Public License  | 
19  |  |  * along with this program.  If not, see <https://www.gnu.org/licenses/>  | 
20  |  |  *  | 
21  |  |  */  | 
22  |  |  | 
23  |  | #include "errors.h"  | 
24  |  | #include "gnutls_int.h"  | 
25  |  | #include <gnutls/crypto.h>  | 
26  |  | #include "crypto-backend.h"  | 
27  |  | #include "crypto.h"  | 
28  |  | #include "mpi.h"  | 
29  |  | #include "pk.h"  | 
30  |  | #include "random.h"  | 
31  |  | #include "cipher_int.h"  | 
32  |  |  | 
33  |  | /* default values for priorities */  | 
34  |  | int crypto_mac_prio = INT_MAX;  | 
35  |  | int crypto_digest_prio = INT_MAX;  | 
36  |  | int crypto_cipher_prio = INT_MAX;  | 
37  |  |  | 
38  |  | typedef struct algo_list { | 
39  |  |   int algorithm;  | 
40  |  |   int priority;  | 
41  |  |   void *alg_data;  | 
42  |  |   int free_alg_data;  | 
43  |  |   struct algo_list *next;  | 
44  |  | } algo_list;  | 
45  |  |  | 
46  | 0  | #define cipher_list algo_list  | 
47  |  | #define mac_list algo_list  | 
48  |  | #define digest_list algo_list  | 
49  |  |  | 
50  |  | static int _algo_register(algo_list *al, int algorithm, int priority, void *s,  | 
51  |  |         int free_s)  | 
52  | 560  | { | 
53  | 560  |   algo_list *cl;  | 
54  | 560  |   algo_list *last_cl = al;  | 
55  | 560  |   int ret;  | 
56  |  |  | 
57  | 560  |   if (al == NULL) { | 
58  | 0  |     ret = gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);  | 
59  | 0  |     goto cleanup;  | 
60  | 0  |   }  | 
61  |  |  | 
62  |  |   /* look if there is any cipher with lowest priority. In that case do not add.  | 
63  |  |    */  | 
64  | 560  |   cl = al;  | 
65  | 2.58k  |   while (cl && cl->alg_data) { | 
66  | 2.14k  |     if (cl->algorithm == algorithm) { | 
67  | 120  |       if (cl->priority < priority) { | 
68  | 0  |         gnutls_assert();  | 
69  | 0  |         ret = GNUTLS_E_CRYPTO_ALREADY_REGISTERED;  | 
70  | 0  |         goto cleanup;  | 
71  | 120  |       } else { | 
72  |  |         /* the current has higher priority -> overwrite */  | 
73  | 120  |         cl->algorithm = algorithm;  | 
74  | 120  |         cl->priority = priority;  | 
75  | 120  |         cl->alg_data = s;  | 
76  | 120  |         cl->free_alg_data = free_s;  | 
77  | 120  |         return 0;  | 
78  | 120  |       }  | 
79  | 120  |     }  | 
80  | 2.02k  |     cl = cl->next;  | 
81  | 2.02k  |     if (cl)  | 
82  | 2.02k  |       last_cl = cl;  | 
83  | 2.02k  |   }  | 
84  |  |  | 
85  | 440  |   cl = gnutls_calloc(1, sizeof(cipher_list));  | 
86  |  |  | 
87  | 440  |   if (cl == NULL) { | 
88  | 0  |     gnutls_assert();  | 
89  | 0  |     ret = GNUTLS_E_MEMORY_ERROR;  | 
90  | 0  |     goto cleanup;  | 
91  | 0  |   }  | 
92  |  |  | 
93  | 440  |   last_cl->algorithm = algorithm;  | 
94  | 440  |   last_cl->priority = priority;  | 
95  | 440  |   last_cl->alg_data = s;  | 
96  | 440  |   last_cl->free_alg_data = free_s;  | 
97  | 440  |   last_cl->next = cl;  | 
98  |  |  | 
99  | 440  |   return 0;  | 
100  | 0  | cleanup:  | 
101  | 0  |   if (free_s)  | 
102  | 0  |     gnutls_free(s);  | 
103  | 0  |   return ret;  | 
104  | 440  | }  | 
105  |  |  | 
106  |  | static const void *_get_algo(algo_list *al, int algo)  | 
107  | 0  | { | 
108  | 0  |   cipher_list *cl;  | 
109  |  |  | 
110  |  |   /* look if there is any cipher with lowest priority. In that case do not add.  | 
111  |  |    */  | 
112  | 0  |   cl = al;  | 
113  | 0  |   while (cl && cl->alg_data) { | 
114  | 0  |     if (cl->algorithm == algo) { | 
115  | 0  |       return cl->alg_data;  | 
116  | 0  |     }  | 
117  | 0  |     cl = cl->next;  | 
118  | 0  |   }  | 
119  |  |  | 
120  | 0  |   return NULL;  | 
121  | 0  | }  | 
122  |  |  | 
123  |  | static cipher_list glob_cl = { GNUTLS_CIPHER_NULL, 0, NULL, 0, NULL }; | 
124  |  | static mac_list glob_ml = { GNUTLS_MAC_NULL, 0, NULL, 0, NULL }; | 
125  |  | static digest_list glob_dl = { GNUTLS_MAC_NULL, 0, NULL, 0, NULL }; | 
126  |  |  | 
127  |  | static void _deregister(algo_list *cl)  | 
128  | 0  | { | 
129  | 0  |   algo_list *next;  | 
130  |  | 
  | 
131  | 0  |   next = cl->next;  | 
132  | 0  |   cl->next = NULL;  | 
133  | 0  |   cl = next;  | 
134  |  | 
  | 
135  | 0  |   while (cl) { | 
136  | 0  |     next = cl->next;  | 
137  | 0  |     if (cl->free_alg_data)  | 
138  | 0  |       gnutls_free(cl->alg_data);  | 
139  | 0  |     gnutls_free(cl);  | 
140  | 0  |     cl = next;  | 
141  | 0  |   }  | 
142  | 0  | }  | 
143  |  |  | 
144  |  | void _gnutls_crypto_deregister(void)  | 
145  | 0  | { | 
146  | 0  |   _deregister(&glob_cl);  | 
147  | 0  |   _deregister(&glob_ml);  | 
148  | 0  |   _deregister(&glob_dl);  | 
149  | 0  | }  | 
150  |  |  | 
151  |  | /*-  | 
152  |  |  * gnutls_crypto_single_cipher_register:  | 
153  |  |  * @algorithm: is the gnutls algorithm identifier  | 
154  |  |  * @priority: is the priority of the algorithm  | 
155  |  |  * @s: is a structure holding new cipher's data  | 
156  |  |  *  | 
157  |  |  * This function will register a cipher algorithm to be used by  | 
158  |  |  * gnutls.  Any algorithm registered will override the included  | 
159  |  |  * algorithms and by convention kernel implemented algorithms have  | 
160  |  |  * priority of 90 and CPU-assisted of 80.  The algorithm with the lowest priority will be  | 
161  |  |  * used by gnutls.  | 
162  |  |  *  | 
163  |  |  * In the case the registered init or setkey functions return %GNUTLS_E_NEED_FALLBACK,  | 
164  |  |  * GnuTLS will attempt to use the next in priority registered cipher.  | 
165  |  |  *  | 
166  |  |  * This function should be called before gnutls_global_init().  | 
167  |  |  *  | 
168  |  |  * For simplicity you can use the convenience  | 
169  |  |  * gnutls_crypto_single_cipher_register() macro.  | 
170  |  |  *  | 
171  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
172  |  |  *  | 
173  |  |  * Since: 2.6.0  | 
174  |  |  -*/  | 
175  |  | int gnutls_crypto_single_cipher_register(gnutls_cipher_algorithm_t algorithm,  | 
176  |  |            int priority,  | 
177  |  |            const gnutls_crypto_cipher_st *s,  | 
178  |  |            int free_s)  | 
179  | 360  | { | 
180  |  |   /* we override const in case free_s is set */  | 
181  | 360  |   return _algo_register(&glob_cl, algorithm, priority, (void *)s, free_s);  | 
182  | 360  | }  | 
183  |  |  | 
184  |  | const gnutls_crypto_cipher_st *  | 
185  |  | _gnutls_get_crypto_cipher(gnutls_cipher_algorithm_t algo)  | 
186  | 0  | { | 
187  | 0  |   return _get_algo(&glob_cl, algo);  | 
188  | 0  | }  | 
189  |  |  | 
190  |  | /**  | 
191  |  |  * gnutls_crypto_register_cipher:  | 
192  |  |  * @algorithm: is the gnutls algorithm identifier  | 
193  |  |  * @priority: is the priority of the algorithm  | 
194  |  |  * @init: A function which initializes the cipher  | 
195  |  |  * @setkey: A function which sets the key of the cipher  | 
196  |  |  * @setiv: A function which sets the nonce/IV of the cipher (non-AEAD)  | 
197  |  |  * @encrypt: A function which performs encryption (non-AEAD)  | 
198  |  |  * @decrypt: A function which performs decryption (non-AEAD)  | 
199  |  |  * @deinit: A function which deinitializes the cipher  | 
200  |  |  *  | 
201  |  |  * This function will register a cipher algorithm to be used by  | 
202  |  |  * gnutls.  Any algorithm registered will override the included  | 
203  |  |  * algorithms and by convention kernel implemented algorithms have  | 
204  |  |  * priority of 90 and CPU-assisted of 80.  The algorithm with the lowest priority will be  | 
205  |  |  * used by gnutls.  | 
206  |  |  *  | 
207  |  |  * In the case the registered init or setkey functions return %GNUTLS_E_NEED_FALLBACK,  | 
208  |  |  * GnuTLS will attempt to use the next in priority registered cipher.  | 
209  |  |  *  | 
210  |  |  * The functions which are marked as non-AEAD they are not required when  | 
211  |  |  * registering a cipher to be used with the new AEAD API introduced in  | 
212  |  |  * GnuTLS 3.4.0. Internally GnuTLS uses the new AEAD API.  | 
213  |  |  *  | 
214  |  |  * Deprecated: since 3.7.0 it is no longer possible to override cipher implementation  | 
215  |  |  *  | 
216  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
217  |  |  *  | 
218  |  |  * Since: 3.4.0  | 
219  |  |  **/  | 
220  |  | int gnutls_crypto_register_cipher(gnutls_cipher_algorithm_t algorithm,  | 
221  |  |           int priority, gnutls_cipher_init_func init,  | 
222  |  |           gnutls_cipher_setkey_func setkey,  | 
223  |  |           gnutls_cipher_setiv_func setiv,  | 
224  |  |           gnutls_cipher_encrypt_func encrypt,  | 
225  |  |           gnutls_cipher_decrypt_func decrypt,  | 
226  |  |           gnutls_cipher_deinit_func deinit)  | 
227  | 0  | { | 
228  | 0  |   _gnutls_debug_log(  | 
229  | 0  |     "called the deprecated gnutls_crypto_register_cipher()\n");  | 
230  | 0  |   return 0;  | 
231  | 0  | }  | 
232  |  |  | 
233  |  | int _gnutls_crypto_register_cipher(gnutls_cipher_algorithm_t algorithm,  | 
234  |  |            int priority, gnutls_cipher_init_func init,  | 
235  |  |            gnutls_cipher_setkey_func setkey,  | 
236  |  |            gnutls_cipher_setiv_func setiv,  | 
237  |  |            gnutls_cipher_encrypt_func encrypt,  | 
238  |  |            gnutls_cipher_decrypt_func decrypt,  | 
239  |  |            gnutls_cipher_deinit_func deinit)  | 
240  | 0  | { | 
241  | 0  |   gnutls_crypto_cipher_st *s =  | 
242  | 0  |     gnutls_calloc(1, sizeof(gnutls_crypto_cipher_st));  | 
243  | 0  |   if (s == NULL)  | 
244  | 0  |     return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);  | 
245  |  |  | 
246  | 0  |   s->init = init;  | 
247  | 0  |   s->setkey = setkey;  | 
248  | 0  |   s->setiv = setiv;  | 
249  | 0  |   s->encrypt = encrypt;  | 
250  | 0  |   s->decrypt = decrypt;  | 
251  | 0  |   s->deinit = deinit;  | 
252  |  | 
  | 
253  | 0  |   return gnutls_crypto_single_cipher_register(algorithm, priority, s, 1);  | 
254  | 0  | }  | 
255  |  |  | 
256  |  | /**  | 
257  |  |  * gnutls_crypto_register_aead_cipher:  | 
258  |  |  * @algorithm: is the gnutls AEAD cipher identifier  | 
259  |  |  * @priority: is the priority of the algorithm  | 
260  |  |  * @init: A function which initializes the cipher  | 
261  |  |  * @setkey: A function which sets the key of the cipher  | 
262  |  |  * @aead_encrypt: Perform the AEAD encryption  | 
263  |  |  * @aead_decrypt: Perform the AEAD decryption  | 
264  |  |  * @deinit: A function which deinitializes the cipher  | 
265  |  |  *  | 
266  |  |  * This function will register a cipher algorithm to be used by  | 
267  |  |  * gnutls.  Any algorithm registered will override the included  | 
268  |  |  * algorithms and by convention kernel implemented algorithms have  | 
269  |  |  * priority of 90 and CPU-assisted of 80.  The algorithm with the lowest priority will be  | 
270  |  |  * used by gnutls.  | 
271  |  |  *  | 
272  |  |  * In the case the registered init or setkey functions return %GNUTLS_E_NEED_FALLBACK,  | 
273  |  |  * GnuTLS will attempt to use the next in priority registered cipher.  | 
274  |  |  *  | 
275  |  |  * The functions registered will be used with the new AEAD API introduced in  | 
276  |  |  * GnuTLS 3.4.0. Internally GnuTLS uses the new AEAD API.  | 
277  |  |  *  | 
278  |  |  * Deprecated: since 3.7.0 it is no longer possible to override cipher implementation  | 
279  |  |  *  | 
280  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
281  |  |  *  | 
282  |  |  * Since: 3.4.0  | 
283  |  |  **/  | 
284  |  | int gnutls_crypto_register_aead_cipher(  | 
285  |  |   gnutls_cipher_algorithm_t algorithm, int priority,  | 
286  |  |   gnutls_cipher_init_func init, gnutls_cipher_setkey_func setkey,  | 
287  |  |   gnutls_cipher_aead_encrypt_func aead_encrypt,  | 
288  |  |   gnutls_cipher_aead_decrypt_func aead_decrypt,  | 
289  |  |   gnutls_cipher_deinit_func deinit)  | 
290  | 0  | { | 
291  | 0  |   _gnutls_debug_log(  | 
292  | 0  |     "called the deprecated gnutls_crypto_register_aead_cipher()\n");  | 
293  | 0  |   return 0;  | 
294  | 0  | }  | 
295  |  |  | 
296  |  | /*-  | 
297  |  |  * gnutls_crypto_rnd_register:  | 
298  |  |  * @priority: is the priority of the generator  | 
299  |  |  * @s: is a structure holding new generator's data  | 
300  |  |  *  | 
301  |  |  * This function will register a random generator to be used by  | 
302  |  |  * gnutls.  Any generator registered will override the included  | 
303  |  |  * generator and by convention kernel implemented generators have  | 
304  |  |  * priority of 90 and CPU-assisted of 80. The generator with the lowest priority will be  | 
305  |  |  * used by gnutls.  | 
306  |  |  *  | 
307  |  |  * This function should be called before gnutls_global_init().  | 
308  |  |  *  | 
309  |  |  * For simplicity you can use the convenience  | 
310  |  |  * gnutls_crypto_rnd_register() macro.  | 
311  |  |  *  | 
312  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
313  |  |  *  | 
314  |  |  * Since: 2.6.0  | 
315  |  |  -*/  | 
316  |  | int gnutls_crypto_rnd_register(int priority, const gnutls_crypto_rnd_st *s)  | 
317  | 0  | { | 
318  | 0  |   if (crypto_rnd_prio >= priority) { | 
319  | 0  |     memcpy(&_gnutls_rnd_ops, s, sizeof(*s));  | 
320  | 0  |     crypto_rnd_prio = priority;  | 
321  | 0  |     return 0;  | 
322  | 0  |   }  | 
323  |  |  | 
324  | 0  |   return GNUTLS_E_CRYPTO_ALREADY_REGISTERED;  | 
325  | 0  | }  | 
326  |  |  | 
327  |  | /*-  | 
328  |  |  * gnutls_crypto_single_mac_register:  | 
329  |  |  * @algorithm: is the gnutls algorithm identifier  | 
330  |  |  * @priority: is the priority of the algorithm  | 
331  |  |  * @s: is a structure holding new algorithms's data  | 
332  |  |  *  | 
333  |  |  * This function will register a MAC algorithm to be used by gnutls.  | 
334  |  |  * Any algorithm registered will override the included algorithms and  | 
335  |  |  * by convention kernel implemented algorithms have priority of 90  | 
336  |  |  *  and CPU-assisted of 80.  | 
337  |  |  * The algorithm with the lowest priority will be used by gnutls.  | 
338  |  |  *  | 
339  |  |  * This function should be called before gnutls_global_init().  | 
340  |  |  *  | 
341  |  |  * For simplicity you can use the convenience  | 
342  |  |  * gnutls_crypto_single_mac_register() macro.  | 
343  |  |  *  | 
344  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
345  |  |  *  | 
346  |  |  * Since: 2.6.0  | 
347  |  |  -*/  | 
348  |  | int gnutls_crypto_single_mac_register(gnutls_mac_algorithm_t algorithm,  | 
349  |  |               int priority,  | 
350  |  |               const gnutls_crypto_mac_st *s, int free_s)  | 
351  | 100  | { | 
352  | 100  |   return _algo_register(&glob_ml, algorithm, priority, (void *)s, free_s);  | 
353  | 100  | }  | 
354  |  |  | 
355  |  | const gnutls_crypto_mac_st *_gnutls_get_crypto_mac(gnutls_mac_algorithm_t algo)  | 
356  | 0  | { | 
357  | 0  |   return _get_algo(&glob_ml, algo);  | 
358  | 0  | }  | 
359  |  |  | 
360  |  | /*-  | 
361  |  |  * gnutls_crypto_single_digest_register:  | 
362  |  |  * @algorithm: is the gnutls algorithm identifier  | 
363  |  |  * @priority: is the priority of the algorithm  | 
364  |  |  * @s: is a structure holding new algorithms's data  | 
365  |  |  *  | 
366  |  |  * This function will register a digest (hash) algorithm to be used by  | 
367  |  |  * gnutls.  Any algorithm registered will override the included  | 
368  |  |  * algorithms and by convention kernel implemented algorithms have  | 
369  |  |  * priority of 90  and CPU-assisted of 80.  The algorithm with the lowest priority will be  | 
370  |  |  * used by gnutls.  | 
371  |  |  *  | 
372  |  |  * This function should be called before gnutls_global_init().  | 
373  |  |  *  | 
374  |  |  * For simplicity you can use the convenience  | 
375  |  |  * gnutls_crypto_single_digest_register() macro.  | 
376  |  |  *  | 
377  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
378  |  |  *  | 
379  |  |  * Since: 2.6.0  | 
380  |  |  -*/  | 
381  |  | int gnutls_crypto_single_digest_register(gnutls_digest_algorithm_t algorithm,  | 
382  |  |            int priority,  | 
383  |  |            const gnutls_crypto_digest_st *s,  | 
384  |  |            int free_s)  | 
385  | 100  | { | 
386  | 100  |   return _algo_register(&glob_dl, algorithm, priority, (void *)s, free_s);  | 
387  | 100  | }  | 
388  |  |  | 
389  |  | const gnutls_crypto_digest_st *  | 
390  |  | _gnutls_get_crypto_digest(gnutls_digest_algorithm_t algo)  | 
391  | 0  | { | 
392  | 0  |   return _get_algo(&glob_dl, algo);  | 
393  | 0  | }  | 
394  |  |  | 
395  |  | /**  | 
396  |  |  * gnutls_crypto_register_mac:  | 
397  |  |  * @algorithm: is the gnutls MAC identifier  | 
398  |  |  * @priority: is the priority of the algorithm  | 
399  |  |  * @init: A function which initializes the MAC  | 
400  |  |  * @setkey: A function which sets the key of the MAC  | 
401  |  |  * @setnonce: A function which sets the nonce for the mac (may be %NULL for common MAC algorithms)  | 
402  |  |  * @hash: Perform the hash operation  | 
403  |  |  * @output: Provide the output of the MAC  | 
404  |  |  * @deinit: A function which deinitializes the MAC  | 
405  |  |  * @hash_fast: Perform the MAC operation in one go  | 
406  |  |  *  | 
407  |  |  * This function will register a MAC algorithm to be used by gnutls.  | 
408  |  |  * Any algorithm registered will override the included algorithms and  | 
409  |  |  * by convention kernel implemented algorithms have priority of 90  | 
410  |  |  *  and CPU-assisted of 80.  | 
411  |  |  * The algorithm with the lowest priority will be used by gnutls.  | 
412  |  |  *  | 
413  |  |  * Deprecated: since 3.7.0 it is no longer possible to override cipher implementation  | 
414  |  |  *  | 
415  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
416  |  |  *  | 
417  |  |  * Since: 3.4.0  | 
418  |  |  **/  | 
419  |  | int gnutls_crypto_register_mac(gnutls_mac_algorithm_t algorithm, int priority,  | 
420  |  |              gnutls_mac_init_func init,  | 
421  |  |              gnutls_mac_setkey_func setkey,  | 
422  |  |              gnutls_mac_setnonce_func setnonce,  | 
423  |  |              gnutls_mac_hash_func hash,  | 
424  |  |              gnutls_mac_output_func output,  | 
425  |  |              gnutls_mac_deinit_func deinit,  | 
426  |  |              gnutls_mac_fast_func hash_fast)  | 
427  | 0  | { | 
428  | 0  |   _gnutls_debug_log(  | 
429  | 0  |     "called the deprecated gnutls_crypto_register_mac()\n");  | 
430  | 0  |   return 0;  | 
431  | 0  | }  | 
432  |  |  | 
433  |  | /**  | 
434  |  |  * gnutls_crypto_register_digest:  | 
435  |  |  * @algorithm: is the gnutls digest identifier  | 
436  |  |  * @priority: is the priority of the algorithm  | 
437  |  |  * @init: A function which initializes the digest  | 
438  |  |  * @hash: Perform the hash operation  | 
439  |  |  * @output: Provide the output of the digest  | 
440  |  |  * @deinit: A function which deinitializes the digest  | 
441  |  |  * @hash_fast: Perform the digest operation in one go  | 
442  |  |  *  | 
443  |  |  * This function will register a digest algorithm to be used by gnutls.  | 
444  |  |  * Any algorithm registered will override the included algorithms and  | 
445  |  |  * by convention kernel implemented algorithms have priority of 90  | 
446  |  |  *  and CPU-assisted of 80.  | 
447  |  |  * The algorithm with the lowest priority will be used by gnutls.  | 
448  |  |  *  | 
449  |  |  * Deprecated: since 3.7.0 it is no longer possible to override cipher implementation  | 
450  |  |  *  | 
451  |  |  * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.  | 
452  |  |  *  | 
453  |  |  * Since: 3.4.0  | 
454  |  |  **/  | 
455  |  | int gnutls_crypto_register_digest(gnutls_digest_algorithm_t algorithm,  | 
456  |  |           int priority, gnutls_digest_init_func init,  | 
457  |  |           gnutls_digest_hash_func hash,  | 
458  |  |           gnutls_digest_output_func output,  | 
459  |  |           gnutls_digest_deinit_func deinit,  | 
460  |  |           gnutls_digest_fast_func hash_fast)  | 
461  | 0  | { | 
462  | 0  |   _gnutls_debug_log(  | 
463  | 0  |     "called the deprecated gnutls_crypto_register_digest()\n");  | 
464  | 0  |   return 0;  | 
465  | 0  | }  |