venus: Remove dedebug
[openafs.git] / src / crypto / hcrypto / engine.c
1 /* Unpicking the public key portions of hcrypto (which we're not building
2  * in the OpenAFS version) from the ENGINE functionality would be complicated.
3  * So, for now, just disable all of the ENGINE code - we don't currently
4  * support it.
5  */
6
7 #include <config.h>
8 #include <engine.h>
9 #include <stdlib.h>
10
11 int
12 ENGINE_finish(const ENGINE *dummy) {
13   return -1;
14 }
15
16 int
17 ENGINE_up_ref(const ENGINE * dummy) {
18   return -1;
19 }
20
21 const RAND_METHOD *
22 ENGINE_get_RAND(const ENGINE * dummy) {
23   return NULL;
24 }