free NULL cleanup -- coda
[oweals/openssl.git] / demos / engines / cluster_labs / hw_cluster_labs.c
1 /* crypto/engine/hw_cluster_labs.c */
2 /*
3  * Written by Jan Tschirschwitz (jan.tschirschwitz@cluster-labs.com for the
4  * OpenSSL project 2000.
5  */
6 /* ====================================================================
7  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59
60 #define MSC_VER                 /* only used cryptic.h */
61
62 #include <stdio.h>
63 #include <openssl/crypto.h>
64 #include <openssl/dso.h>
65 #include <openssl/des.h>
66 #include <openssl/engine.h>
67
68 #ifndef NO_HW
69 # ifndef NO_HW_CLUSTER_LABS
70
71 #  ifdef FLAT_INC
72 #   include "cluster_labs.h"
73 #  else
74 #   include "vendor_defns/cluster_labs.h"
75 #  endif
76
77 #  define CL_LIB_NAME "cluster_labs engine"
78 #  include "hw_cluster_labs_err.c"
79
80 static int cluster_labs_destroy(ENGINE *e);
81 static int cluster_labs_init(ENGINE *e);
82 static int cluster_labs_finish(ENGINE *e);
83 static int cluster_labs_ctrl(ENGINE *e, int cmd, long i, void *p,
84                              void (*f) ());
85
86 /* BIGNUM stuff */
87 /* This function is aliased to mod_exp (with the mont stuff dropped). */
88 static int cluster_labs_mod_exp_mont(BIGNUM *r, const BIGNUM *a,
89                                      const BIGNUM *p, const BIGNUM *m,
90                                      BN_CTX *ctx, BN_MONT_CTX *m_ctx);
91
92 /* RSA stuff */
93 #  ifndef OPENSSL_NO_RSA
94 static int cluster_labs_rsa_pub_enc(int flen, const unsigned char *from,
95                                     unsigned char *to, RSA *rsa, int padding);
96 static int cluster_labs_rsa_pub_dec(int flen, const unsigned char *from,
97                                     unsigned char *to, RSA *rsa, int padding);
98 static int cluster_labs_rsa_priv_enc(int flen, const unsigned char *from,
99                                      unsigned char *to, RSA *rsa,
100                                      int padding);
101 static int cluster_labs_rsa_priv_dec(int flen, const unsigned char *from,
102                                      unsigned char *to, RSA *rsa,
103                                      int padding);
104 static int cluster_labs_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa);
105 #  endif
106
107 /* DSA stuff */
108 #  ifndef OPENSSL_NO_DSA
109 static DSA_SIG *cluster_labs_dsa_sign(const unsigned char *dgst, int dlen,
110                                       DSA *dsa);
111 static int cluster_labs_dsa_verify(const unsigned char *dgst, int dgst_len,
112                                    DSA_SIG *sig, DSA *dsa);
113 static int cluster_labs_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,
114                                     BIGNUM *p1, BIGNUM *a2, BIGNUM *p2,
115                                     BIGNUM *m, BN_CTX *ctx,
116                                     BN_MONT_CTX *in_mont);
117 static int cluster_labs_mod_exp_dsa(DSA *dsa, BIGNUM *r, BIGNUM *a,
118                                     const BIGNUM *p, const BIGNUM *m,
119                                     BN_CTX *ctx, BN_MONT_CTX *m_ctx);
120 #  endif
121
122 /* DH stuff */
123 #  ifndef OPENSSL_NO_DH
124 /* This function is alised to mod_exp (with the DH and mont dropped). */
125 static int cluster_labs_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a,
126                                    const BIGNUM *p, const BIGNUM *m,
127                                    BN_CTX *ctx, BN_MONT_CTX *m_ctx);
128 #  endif
129
130 /* RANDOM stuff */
131 static int cluster_labs_rand_bytes(unsigned char *buf, int num);
132
133 /* The definitions for control commands specific to this engine */
134 #  define CLUSTER_LABS_CMD_SO_PATH                ENGINE_CMD_BASE
135 static const ENGINE_CMD_DEFN cluster_labs_cmd_defns[] = {
136     {CLUSTER_LABS_CMD_SO_PATH,
137      "SO_PATH",
138      "Specifies the path to the 'cluster labs' shared library",
139      ENGINE_CMD_FLAG_STRING},
140     {0, NULL, NULL, 0}
141 };
142
143 /* Our internal RSA_METHOD that we provide pointers to */
144 #  ifndef OPENSSL_NO_RSA
145 static RSA_METHOD cluster_labs_rsa = {
146     "Cluster Labs RSA method",
147     cluster_labs_rsa_pub_enc,   /* rsa_pub_enc */
148     cluster_labs_rsa_pub_dec,   /* rsa_pub_dec */
149     cluster_labs_rsa_priv_enc,  /* rsa_priv_enc */
150     cluster_labs_rsa_priv_dec,  /* rsa_priv_dec */
151     cluster_labs_rsa_mod_exp,   /* rsa_mod_exp */
152     cluster_labs_mod_exp_mont,  /* bn_mod_exp */
153     NULL,                       /* init */
154     NULL,                       /* finish */
155     0,                          /* flags */
156     NULL,                       /* apps_data */
157     NULL,                       /* rsa_sign */
158     NULL                        /* rsa_verify */
159 };
160 #  endif
161
162 /* Our internal DSA_METHOD that we provide pointers to */
163 #  ifndef OPENSSL_NO_DSA
164 static DSA_METHOD cluster_labs_dsa = {
165     "Cluster Labs DSA method",
166     cluster_labs_dsa_sign,      /* dsa_do_sign */
167     NULL,                       /* dsa_sign_setup */
168     cluster_labs_dsa_verify,    /* dsa_do_verify */
169     cluster_labs_dsa_mod_exp,   /* dsa_mod_exp */
170     cluster_labs_mod_exp_dsa,   /* bn_mod_exp */
171     NULL,                       /* init */
172     NULL,                       /* finish */
173     0,                          /* flags */
174     NULL                        /* app_data */
175 };
176 #  endif
177
178 /* Our internal DH_METHOD that we provide pointers to */
179 #  ifndef OPENSSL_NO_DH
180 static DH_METHOD cluster_labs_dh = {
181     "Cluster Labs DH method",
182     NULL,                       /* generate key */
183     NULL,                       /* compute key */
184     cluster_labs_mod_exp_dh,    /* bn_mod_exp */
185     NULL,                       /* init */
186     NULL,                       /* finish */
187     0,                          /* flags */
188     NULL                        /* app_data */
189 };
190 #  endif
191
192 static RAND_METHOD cluster_labs_rand = {
193     /* "Cluster Labs RAND method", */
194     NULL,                       /* seed */
195     cluster_labs_rand_bytes,    /* bytes */
196     NULL,                       /* cleanup */
197     NULL,                       /* add */
198     cluster_labs_rand_bytes,    /* pseudorand */
199     NULL,                       /* status */
200 };
201
202 static const char *engine_cluster_labs_id = "cluster_labs";
203 static const char *engine_cluster_labs_name =
204     "Cluster Labs hardware engine support";
205
206 /* engine implementation */
207 /* ---------------------*/
208 static int bind_helper(ENGINE *e)
209 {
210
211     if (!ENGINE_set_id(e, engine_cluster_labs_id) ||
212         !ENGINE_set_name(e, engine_cluster_labs_name) ||
213 #  ifndef OPENSSL_NO_RSA
214         !ENGINE_set_RSA(e, &cluster_labs_rsa) ||
215 #  endif
216 #  ifndef OPENSSL_NO_DSA
217         !ENGINE_set_DSA(e, &cluster_labs_dsa) ||
218 #  endif
219 #  ifndef OPENSSL_NO_DH
220         !ENGINE_set_DH(e, &cluster_labs_dh) ||
221 #  endif
222         !ENGINE_set_RAND(e, &cluster_labs_rand) ||
223         !ENGINE_set_destroy_function(e, cluster_labs_destroy) ||
224         !ENGINE_set_init_function(e, cluster_labs_init) ||
225         !ENGINE_set_finish_function(e, cluster_labs_finish) ||
226         !ENGINE_set_ctrl_function(e, cluster_labs_ctrl) ||
227         !ENGINE_set_cmd_defns(e, cluster_labs_cmd_defns))
228         return 0;
229     /* Ensure the error handling is set up */
230     ERR_load_CL_strings();
231     return 1;
232 }
233
234 #  ifndef ENGINE_DYNAMIC_SUPPORT
235 static ENGINE *engine_cluster_labs(void)
236 {
237     ENGINE *ret = ENGINE_new();
238
239     if (!ret)
240         return NULL;
241     if (!bind_helper(ret)) {
242         ENGINE_free(ret);
243         return NULL;
244     }
245     return ret;
246 }
247
248 #   ifdef ENGINE_DYNAMIC_SUPPORT
249 static
250 #   endif
251 void ENGINE_load_cluster_labs(void)
252 {
253
254     ENGINE *cluster_labs = engine_cluster_labs();
255
256     if (!cluster_labs)
257         return;
258     ENGINE_add(cluster_labs);
259     ENGINE_free(cluster_labs);
260     ERR_clear_error();
261 }
262 #  endif                        /* !ENGINE_DYNAMIC_SUPPORT */
263
264 static int cluster_labs_destroy(ENGINE *e)
265 {
266
267     ERR_unload_CL_strings();
268     return 1;
269 }
270
271 /*
272  * This is a process-global DSO handle used for loading and unloading the
273  * Cluster Labs library. NB: This is only set (or unset) during an init() or
274  * finish() call (reference counts permitting) and they're operating with
275  * global locks, so this should be thread-safe implicitly.
276  */
277 static DSO *cluster_labs_dso = NULL;
278
279 /*
280  * These are the function pointers that are (un)set when the library has
281  * successfully (un)loaded.
282  */
283 static cl_engine_init *p_cl_engine_init = NULL;
284 static cl_mod_exp *p_cl_mod_exp = NULL;
285 static cl_mod_exp_crt *p_cl_mod_exp_crt = NULL;
286 static cl_rsa_mod_exp *p_cl_rsa_mod_exp = NULL;
287 static cl_rsa_priv_enc *p_cl_rsa_priv_enc = NULL;
288 static cl_rsa_priv_dec *p_cl_rsa_priv_dec = NULL;
289 static cl_rsa_pub_enc *p_cl_rsa_pub_enc = NULL;
290 static cl_rsa_pub_dec *p_cl_rsa_pub_dec = NULL;
291 static cl_rand_bytes *p_cl_rand_bytes = NULL;
292 static cl_dsa_sign *p_cl_dsa_sign = NULL;
293 static cl_dsa_verify *p_cl_dsa_verify = NULL;
294
295 int cluster_labs_init(ENGINE *e)
296 {
297
298     cl_engine_init *p1;
299     cl_mod_exp *p2;
300     cl_mod_exp_crt *p3;
301     cl_rsa_mod_exp *p4;
302     cl_rsa_priv_enc *p5;
303     cl_rsa_priv_dec *p6;
304     cl_rsa_pub_enc *p7;
305     cl_rsa_pub_dec *p8;
306     cl_rand_bytes *p20;
307     cl_dsa_sign *p30;
308     cl_dsa_verify *p31;
309
310     /* engine already loaded */
311     if (cluster_labs_dso != NULL) {
312         CLerr(CL_F_CLUSTER_LABS_INIT, CL_R_ALREADY_LOADED);
313         goto err;
314     }
315     /* try to load engine    */
316     cluster_labs_dso = DSO_load(NULL, CLUSTER_LABS_LIB_NAME, NULL, 0);
317     if (cluster_labs_dso == NULL) {
318         CLerr(CL_F_CLUSTER_LABS_INIT, CL_R_DSO_FAILURE);
319         goto err;
320     }
321     /* bind functions */
322     if (!
323         (p1 =
324          (cl_engine_init *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F1))
325 || !(p2 = (cl_mod_exp *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F2))
326 || !(p3 = (cl_mod_exp_crt *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F3))
327 || !(p4 = (cl_rsa_mod_exp *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F4))
328 || !(p5 =
329      (cl_rsa_priv_enc *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F5))
330 || !(p6 =
331      (cl_rsa_priv_dec *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F6))
332 || !(p7 = (cl_rsa_pub_enc *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F7))
333 || !(p8 = (cl_rsa_pub_dec *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F8))
334 || !(p20 =
335      (cl_rand_bytes *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F20))
336 || !(p30 = (cl_dsa_sign *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F30))
337 || !(p31 =
338      (cl_dsa_verify *) DSO_bind_func(cluster_labs_dso, CLUSTER_LABS_F31))) {
339         CLerr(CL_F_CLUSTER_LABS_INIT, CL_R_DSO_FAILURE);
340         goto err;
341     }
342
343     /* copy function pointers */
344     p_cl_engine_init = p1;
345     p_cl_mod_exp = p2;
346     p_cl_mod_exp_crt = p3;
347     p_cl_rsa_mod_exp = p4;
348     p_cl_rsa_priv_enc = p5;
349     p_cl_rsa_priv_dec = p6;
350     p_cl_rsa_pub_enc = p7;
351     p_cl_rsa_pub_dec = p8;
352     p_cl_rand_bytes = p20;
353     p_cl_dsa_sign = p30;
354     p_cl_dsa_verify = p31;
355
356     /* cluster labs engine init */
357     if (p_cl_engine_init() == 0) {
358         CLerr(CL_F_CLUSTER_LABS_INIT, CL_R_INIT_FAILED);
359         goto err;
360     }
361
362     return (1);
363
364  err:
365     /* reset all pointers */
366     DSO_free(cluster_labs_dso);
367     cluster_labs_dso = NULL;
368     p_cl_engine_init = NULL;
369     p_cl_mod_exp = NULL;
370     p_cl_mod_exp_crt = NULL;
371     p_cl_rsa_mod_exp = NULL;
372     p_cl_rsa_priv_enc = NULL;
373     p_cl_rsa_priv_dec = NULL;
374     p_cl_rsa_pub_enc = NULL;
375     p_cl_rsa_pub_dec = NULL;
376     p_cl_rand_bytes = NULL;
377     p_cl_dsa_sign = NULL;
378     p_cl_dsa_verify = NULL;
379
380     return (0);
381 }
382
383 static int cluster_labs_finish(ENGINE *e)
384 {
385
386     if (cluster_labs_dso == NULL) {
387         CLerr(CL_F_CLUSTER_LABS_FINISH, CL_R_NOT_LOADED);
388         return 0;
389     }
390     if (!DSO_free(cluster_labs_dso)) {
391         CLerr(CL_F_CLUSTER_LABS_FINISH, CL_R_DSO_FAILURE);
392         return 0;
393     }
394
395     cluster_labs_dso = NULL;
396     p_cl_engine_init = NULL;
397     p_cl_mod_exp = NULL;
398     p_cl_rsa_mod_exp = NULL;
399     p_cl_mod_exp_crt = NULL;
400     p_cl_rsa_priv_enc = NULL;
401     p_cl_rsa_priv_dec = NULL;
402     p_cl_rsa_pub_enc = NULL;
403     p_cl_rsa_pub_dec = NULL;
404     p_cl_rand_bytes = NULL;
405     p_cl_dsa_sign = NULL;
406     p_cl_dsa_verify = NULL;
407
408     return (1);
409
410 }
411
412 static int cluster_labs_ctrl(ENGINE *e, int cmd, long i, void *p,
413                              void (*f) ())
414 {
415     int initialised = ((cluster_labs_dso == NULL) ? 0 : 1);
416
417     switch (cmd) {
418     case CLUSTER_LABS_CMD_SO_PATH:
419         if (p == NULL) {
420             CLerr(CL_F_CLUSTER_LABS_CTRL, ERR_R_PASSED_NULL_PARAMETER);
421             return 0;
422         }
423         if (initialised) {
424             CLerr(CL_F_CLUSTER_LABS_CTRL, CL_R_ALREADY_LOADED);
425             return 0;
426         }
427         CLUSTER_LABS_LIB_NAME = (const char *)p;
428         return 1;
429     default:
430         break;
431     }
432     CLerr(CL_F_CLUSTER_LABS_CTRL, CL_R_COMMAND_NOT_IMPLEMENTED);
433     return 0;
434 }
435
436 static int cluster_labs_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
437                                 const BIGNUM *m, BN_CTX *ctx)
438 {
439
440     if (cluster_labs_dso == NULL) {
441         CLerr(CL_F_CLUSTER_LABS_MOD_EXP, CL_R_NOT_LOADED);
442         return 0;
443     }
444     if (p_cl_mod_exp == NULL) {
445         CLerr(CL_F_CLUSTER_LABS_MOD_EXP, CL_R_FUNCTION_NOT_BINDED);
446         return 0;
447     }
448
449     return p_cl_mod_exp(r, a, p, m, ctx);
450
451 }
452
453 static int cluster_labs_mod_exp_crt(BIGNUM *r, BIGNUM *a, const BIGNUM *p,
454                                     const BIGNUM *q, const BIGNUM *dmp1,
455                                     const BIGNUM *dmq1, const BIGNUM *iqmp,
456                                     BN_CTX *ctx)
457 {
458
459     if (cluster_labs_dso == NULL) {
460         CLerr(CL_F_CLUSTER_LABS_MOD_EXP_CRT, CL_R_NOT_LOADED);
461         return 0;
462     }
463     if (p_cl_mod_exp_crt == NULL) {
464         CLerr(CL_F_CLUSTER_LABS_MOD_EXP_CRT, CL_R_FUNCTION_NOT_BINDED);
465         return 0;
466     }
467
468     return p_cl_mod_exp_crt(r, a, p, q, dmp1, dmq1, iqmp, ctx);
469
470 }
471
472 static int cluster_labs_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa)
473 {
474
475     if (cluster_labs_dso == NULL) {
476         CLerr(CL_F_CLUSTER_LABS_RSA_MOD_EXP, CL_R_NOT_LOADED);
477         return 0;
478     }
479     if (p_cl_rsa_mod_exp == NULL) {
480         CLerr(CL_F_CLUSTER_LABS_RSA_MOD_EXP, CL_R_FUNCTION_NOT_BINDED);
481         return 0;
482     }
483
484     return p_cl_rsa_mod_exp(r0, I, rsa);
485
486 }
487
488 static DSA_SIG *cluster_labs_dsa_sign(const unsigned char *dgst, int dlen,
489                                       DSA *dsa)
490 {
491
492     if (cluster_labs_dso == NULL) {
493         CLerr(CL_F_CLUSTER_LABS_DSA_SIGN, CL_R_NOT_LOADED);
494         return 0;
495     }
496     if (p_cl_dsa_sign == NULL) {
497         CLerr(CL_F_CLUSTER_LABS_DSA_SIGN, CL_R_FUNCTION_NOT_BINDED);
498         return 0;
499     }
500
501     return p_cl_dsa_sign(dgst, dlen, dsa);
502
503 }
504
505 static int cluster_labs_dsa_verify(const unsigned char *dgst, int dgst_len,
506                                    DSA_SIG *sig, DSA *dsa)
507 {
508
509     if (cluster_labs_dso == NULL) {
510         CLerr(CL_F_CLUSTER_LABS_DSA_VERIFY, CL_R_NOT_LOADED);
511         return 0;
512     }
513
514     if (p_cl_dsa_verify == NULL) {
515         CLerr(CL_F_CLUSTER_LABS_DSA_VERIFY, CL_R_FUNCTION_NOT_BINDED);
516         return 0;
517     }
518
519     return p_cl_dsa_verify(dgst, dgst_len, sig, dsa);
520
521 }
522
523 static int cluster_labs_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,
524                                     BIGNUM *p1, BIGNUM *a2, BIGNUM *p2,
525                                     BIGNUM *m, BN_CTX *ctx,
526                                     BN_MONT_CTX *in_mont)
527 {
528     BIGNUM t;
529     int status = 0;
530
531     BN_init(&t);
532     /* let rr = a1 ^ p1 mod m */
533     if (!cluster_labs_mod_exp(rr, a1, p1, m, ctx))
534         goto end;
535     /* let t = a2 ^ p2 mod m */
536     if (!cluster_labs_mod_exp(&t, a2, p2, m, ctx))
537         goto end;
538     /* let rr = rr * t mod m */
539     if (!BN_mod_mul(rr, rr, &t, m, ctx))
540         goto end;
541     status = 1;
542  end:
543     BN_free(&t);
544
545     return (1);
546
547 }
548
549 static int cluster_labs_mod_exp_dsa(DSA *dsa, BIGNUM *r, BIGNUM *a,
550                                     const BIGNUM *p, const BIGNUM *m,
551                                     BN_CTX *ctx, BN_MONT_CTX *m_ctx)
552 {
553     return cluster_labs_mod_exp(r, a, p, m, ctx);
554 }
555
556 /* This function is aliased to mod_exp (with the mont stuff dropped). */
557 static int cluster_labs_mod_exp_mont(BIGNUM *r, const BIGNUM *a,
558                                      const BIGNUM *p, const BIGNUM *m,
559                                      BN_CTX *ctx, BN_MONT_CTX *m_ctx)
560 {
561     return cluster_labs_mod_exp(r, a, p, m, ctx);
562 }
563
564 /* This function is aliased to mod_exp (with the dh and mont dropped). */
565 static int cluster_labs_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a,
566                                    const BIGNUM *p, const BIGNUM *m,
567                                    BN_CTX *ctx, BN_MONT_CTX *m_ctx)
568 {
569     return cluster_labs_mod_exp(r, a, p, m, ctx);
570 }
571
572 static int cluster_labs_rsa_pub_enc(int flen, const unsigned char *from,
573                                     unsigned char *to, RSA *rsa, int padding)
574 {
575
576     if (cluster_labs_dso == NULL) {
577         CLerr(CL_F_CLUSTER_LABS_RSA_PUB_ENC, CL_R_NOT_LOADED);
578         return 0;
579     }
580     if (p_cl_rsa_priv_enc == NULL) {
581         CLerr(CL_F_CLUSTER_LABS_RSA_PUB_ENC, CL_R_FUNCTION_NOT_BINDED);
582         return 0;
583     }
584
585     return p_cl_rsa_pub_enc(flen, from, to, rsa, padding);
586
587 }
588
589 static int cluster_labs_rsa_pub_dec(int flen, const unsigned char *from,
590                                     unsigned char *to, RSA *rsa, int padding)
591 {
592
593     if (cluster_labs_dso == NULL) {
594         CLerr(CL_F_CLUSTER_LABS_RSA_PUB_DEC, CL_R_NOT_LOADED);
595         return 0;
596     }
597     if (p_cl_rsa_priv_enc == NULL) {
598         CLerr(CL_F_CLUSTER_LABS_RSA_PUB_DEC, CL_R_FUNCTION_NOT_BINDED);
599         return 0;
600     }
601
602     return p_cl_rsa_pub_dec(flen, from, to, rsa, padding);
603
604 }
605
606 static int cluster_labs_rsa_priv_enc(int flen, const unsigned char *from,
607                                      unsigned char *to, RSA *rsa, int padding)
608 {
609
610     if (cluster_labs_dso == NULL) {
611         CLerr(CL_F_CLUSTER_LABS_RSA_PRIV_ENC, CL_R_NOT_LOADED);
612         return 0;
613     }
614
615     if (p_cl_rsa_priv_enc == NULL) {
616         CLerr(CL_F_CLUSTER_LABS_RSA_PRIV_ENC, CL_R_FUNCTION_NOT_BINDED);
617         return 0;
618     }
619
620     return p_cl_rsa_priv_enc(flen, from, to, rsa, padding);
621
622 }
623
624 static int cluster_labs_rsa_priv_dec(int flen, const unsigned char *from,
625                                      unsigned char *to, RSA *rsa, int padding)
626 {
627
628     if (cluster_labs_dso == NULL) {
629         CLerr(CL_F_CLUSTER_LABS_RSA_PRIV_DEC, CL_R_NOT_LOADED);
630         return 0;
631     }
632     if (p_cl_rsa_priv_dec == NULL) {
633         CLerr(CL_F_CLUSTER_LABS_RSA_PRIV_DEC, CL_R_FUNCTION_NOT_BINDED);
634         return 0;
635     }
636
637     return p_cl_rsa_priv_dec(flen, from, to, rsa, padding);
638
639 }
640
641 /************************************************************************************
642 * Symmetric algorithms
643 ************************************************************************************/
644 /* this will be come soon! */
645
646 /************************************************************************************
647 * Random generator
648 ************************************************************************************/
649
650 static int cluster_labs_rand_bytes(unsigned char *buf, int num)
651 {
652
653     if (cluster_labs_dso == NULL) {
654         CLerr(CL_F_CLUSTER_LABS_RAND_BYTES, CL_R_NOT_LOADED);
655         return 0;
656     }
657     if (p_cl_mod_exp_crt == NULL) {
658         CLerr(CL_F_CLUSTER_LABS_RAND_BYTES, CL_R_FUNCTION_NOT_BINDED);
659         return 0;
660     }
661
662     return p_cl_rand_bytes(buf, num);
663
664 }
665
666 /*
667  * This stuff is needed if this ENGINE is being compiled into a
668  * self-contained shared-library.
669  */
670 #  ifdef ENGINE_DYNAMIC_SUPPORT
671 static int bind_fn(ENGINE *e, const char *id)
672 {
673     fprintf(stderr, "bind_fn CLUSTER_LABS\n");
674     if (id && (strcmp(id, engine_cluster_labs_id) != 0)) {
675         fprintf(stderr, "bind_fn return(0) first\n");
676         return 0;
677     }
678     if (!bind_helper(e)) {
679         fprintf(stderr, "bind_fn return(1) first\n");
680         return 0;
681     }
682     fprintf(stderr, "bind_fn return(1)\n");
683     return 1;
684 }
685
686 IMPLEMENT_DYNAMIC_CHECK_FN()
687     IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
688 #  endif                        /* ENGINE_DYNAMIC_SUPPORT */
689 # endif                         /* !NO_HW_CLUSTER_LABS */
690 #endif                          /* !NO_HW */