-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSignCSR.xs
783 lines (636 loc) · 21.2 KB
/
SignCSR.xs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <stdio.h>
#include <stdlib.h>
#include "ppport.h"
#include <openssl/asn1.h>
#include <openssl/objects.h>
#include <openssl/bio.h>
#include <openssl/crypto.h>
#include <openssl/err.h>
#include <openssl/evp.h>
#include <openssl/pem.h>
#include <openssl/x509.h>
#include <openssl/x509v3.h>
#include <openssl/x509_vfy.h>
#include <openssl/safestack.h>
#include <openssl/pkcs12.h>
#include <openssl/bn.h>
# define OPT_FMT_PEM (1L << 1)
# define CHECK_OPEN_SSL(p_result) if (!(p_result)) croakSsl(__FILE__, __LINE__);
# define EXT_COPY_NONE 0
# define EXT_COPY_ADD 1
# define EXT_COPY_ALL 2
# define EXT_COPY_UNSET -1
# define SERIAL_RAND_BITS 159
BIO *bio_err;
#if OPENSSL_API_COMPAT >= 30000
OSSL_LIB_CTX *libctx = NULL;
static const char *propq = NULL;
#endif
static unsigned long nmflag = 0;
static char nmflag_set = 0;
// Taken from p5-Git-Raw
STATIC HV *ensure_hv(SV *sv, const char *identifier) {
if (!SvROK(sv) || SvTYPE(SvRV(sv)) != SVt_PVHV)
croak("Invalid type for '%s', expected a hash", identifier);
return (HV *) SvRV(sv);
}
int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
{
BIGNUM *btmp;
int ret = 0;
btmp = b == NULL ? BN_new() : b;
if (btmp == NULL)
return 0;
#if OPENSSL_API_COMPAT <= 10100
if (!BN_rand(btmp, SERIAL_RAND_BITS, 0, 0))
#else
if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY))
#endif
goto error;
if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
goto error;
ret = 1;
error:
if (btmp != b)
BN_free(btmp);
return ret;
}
int set_cert_times(X509 *x, const char *startdate, const char *enddate,
int days)
{
if (startdate == NULL || strcmp(startdate, "today") == 0) {
#if OPENSSL_API_COMPAT <= 10100
if (X509_gmtime_adj(X509_get_notBefore(x), 0) == NULL)
#else
if (X509_gmtime_adj(X509_getm_notBefore(x), 0) == NULL)
#endif
return 0;
} else {
#if OPENSSL_API_COMPAT <= 10101
if (!ASN1_TIME_set_string(X509_get_notBefore(x), startdate))
#else
if (!ASN1_TIME_set_string_X509(X509_getm_notBefore(x), startdate))
#endif
return 0;
}
if (enddate == NULL) {
#if OPENSSL_API_COMPAT <= 10100
if (X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL)
#else
if (X509_time_adj_ex(X509_getm_notAfter(x), days, 0, NULL)
#endif
== NULL)
return 0;
#if OPENSSL_API_COMPAT < 10101
} else if (!ASN1_TIME_set_string(X509_get_notAfter(x), enddate)) {
#else
} else if (!ASN1_TIME_set_string_X509(X509_getm_notAfter(x), enddate)) {
#endif
return 0;
}
return 1;
}
int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
{
STACK_OF(X509_EXTENSION) *exts;
int i, ret = 0;
if (x == NULL || req == NULL)
return 0;
if (copy_type == EXT_COPY_NONE)
return 1;
exts = X509_REQ_get_extensions(req);
for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
ASN1_OBJECT *obj = X509_EXTENSION_get_object(ext);
int idx = X509_get_ext_by_OBJ(x, obj, -1);
/* Does extension exist in target? */
if (idx != -1) {
/* If normal copy don't override existing extension */
if (copy_type == EXT_COPY_ADD)
continue;
/* Delete all extensions of same type */
do {
X509_EXTENSION_free(X509_delete_ext(x, idx));
idx = X509_get_ext_by_OBJ(x, obj, -1);
} while (idx != -1);
}
if (!X509_add_ext(x, ext, -1))
goto end;
}
ret = 1;
end:
sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
return ret;
}
int cert_matches_key(const X509 *cert, const EVP_PKEY *pkey)
{
int match;
ERR_set_mark();
match = X509_check_private_key((X509 *) cert, (EVP_PKEY *) pkey);
ERR_pop_to_mark();
return match;
}
static int do_x509_req_init(X509_REQ *x, STACK_OF(OPENSSL_STRING) *opts)
{
//int i;
opts = NULL;
if (opts == NULL)
return 1;
//for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
// char *opt = sk_OPENSSL_STRING_value(opts, i);
// if (x509_req_ctrl_string(x, opt) <= 0) {
// croak("parameter error "); //$, n", opt);
// ERR_print_errors(bio_err);
// return 0;
// }
//}
return 1;
}
/*
* do_X509_REQ_verify returns 1 if the signature is valid,
* 0 if the signature check fails, or -1 if error occurs.
*/
int do_X509_REQ_verify(X509_REQ *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts)
{
int rv = 0;
if (do_x509_req_init(x, vfyopts) > 0){
#if OPENSSL_API_COMPAT >= 30000
rv = X509_REQ_verify_ex(x, pkey, libctx, propq);
#else
rv = X509_REQ_verify(x, pkey);
#endif
}
else
rv = -1;
return rv;
}
void croakSsl(char* p_file, int p_line)
{
const char* errorReason;
/* Just return the top error on the stack */
errorReason = ERR_reason_error_string(ERR_get_error());
ERR_clear_error();
croak("%s:%d: OpenSSL error: %s", p_file, p_line, errorReason);
}
SV* extractBioString(pTHX_ BIO* p_stringBio)
{
SV* sv;
BUF_MEM* bptr;
CHECK_OPEN_SSL(BIO_flush(p_stringBio) == 1);
BIO_get_mem_ptr(p_stringBio, &bptr);
sv = newSVpv(bptr->data, bptr->length);
CHECK_OPEN_SSL(BIO_set_close(p_stringBio, BIO_CLOSE) == 1);
BIO_free(p_stringBio);
return sv;
}
int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value)
{
int rv = 0;
char *stmp, *vtmp = NULL;
stmp = OPENSSL_strdup(value);
if (stmp == NULL)
return -1;
vtmp = strchr(stmp, ':');
if (vtmp == NULL)
goto err;
*vtmp = 0;
vtmp++;
rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
err:
OPENSSL_free(stmp);
return rv;
}
static int do_pkey_ctx_init(EVP_PKEY_CTX *pkctx, STACK_OF(OPENSSL_STRING) *opts)
{
int i;
if (opts == NULL)
return 1;
for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
char *opt = sk_OPENSSL_STRING_value(opts, i);
if (pkey_ctrl_string(pkctx, opt) <= 0) {
BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
ERR_print_errors(bio_err);
return 0;
}
}
return 1;
}
unsigned long get_nameopt(void)
{
return
nmflag_set ? nmflag : XN_FLAG_SEP_CPLUS_SPC | ASN1_STRFLGS_UTF8_CONVERT;
}
#if OPENSSL_API_COMPAT >= 30101
static int do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts)
#else
static int do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey, const EVP_MD *md, STACK_OF(OPENSSL_STRING) *sigopts)
#endif
{
EVP_PKEY_CTX *pkctx = NULL;
#if OPENSSL_API_COMPAT >= 30101
char def_md[80];
#else
int def_nid;
#endif
if (ctx == NULL)
return 0;
/*
* EVP_PKEY_get_default_digest_name() returns 2 if the digest is mandatory
* for this algorithm.
*/
#if OPENSSL_API_COMPAT >= 30101
if (EVP_PKEY_get_default_digest_name(pkey, def_md, sizeof(def_md)) == 2
&& strcmp(def_md, "UNDEF") == 0) {
#else
if (EVP_PKEY_get_default_digest_nid(pkey, &def_nid) == 2
&& def_nid == NID_undef) {
#endif
/* The signing algorithm requires there to be no digest */
md = NULL;
}
#if OPENSSL_API_COMPAT >= 30101
int val = EVP_DigestSignInit_ex(ctx, &pkctx, md, libctx,
propq, pkey, NULL);
#else
int val = EVP_DigestSignInit(ctx, &pkctx, md, NULL, pkey);
#endif
return val
&& do_pkey_ctx_init(pkctx, sigopts);
}
static int key_destroy(pTHX_ SV* var, MAGIC* magic) {
EVP_PKEY * key;
key = (EVP_PKEY *) magic->mg_ptr;
if (!key)
return 0;
EVP_PKEY_free(key);
return 1;
}
static const MGVTBL key_magic = { NULL, NULL, NULL, NULL, key_destroy };
MODULE = Crypt::OpenSSL::SignCSR PACKAGE = Crypt::OpenSSL::SignCSR
PROTOTYPES: DISABLE
SV * new(class, ...)
const char * class
PREINIT:
SV * private_key = NULL;
HV * options = newHV();
CODE:
STRLEN keyStringLength;
char* keyString;
BIO *bio;
SV * key = newSV(0);
SV **svp; // Temporary storage of options
SV *digest = NULL;
SV *format = newSVpv("pem", 3);
IV days = 365;
if (items > 1) {
if (ST(1) != NULL) {
// TODO: ensure_string_sv
private_key = ST(1);
if (strlen(SvPV_nolen(private_key)) == 0) {
private_key = NULL;
}
}
if (items > 2)
options = ensure_hv(ST(2), "options");
}
// Get the number of days for specified - default 365
if (hv_exists(options, "days", strlen("days"))) {
svp = hv_fetch(options, "days", strlen("days"), 0);
if (SvIOKp(*svp)) {
days = SvIV(*svp);
}
}
// Get the digest format - default NULL uses the openssl default
if (hv_exists(options, "digest", strlen("digest"))) {
svp = hv_fetch(options, "digest", strlen("digest"), 0);
if (SvPOKp(*svp)) {
digest = *svp;
}
} // No defaut value - sign will use openssl default
// Get the output format - default is pem format
if (hv_exists(options, "format", strlen("format"))) {
svp = hv_fetch(options, "format", strlen("format"), 0);
if (SvPOKp(*svp)) {
format = *svp;
}
}
// Get the private key and save it in memory
keyString = SvPV(private_key, keyStringLength);
bio = BIO_new_mem_buf(keyString, keyStringLength);
if (bio == NULL) {
croak ("Bio is null **** \n");
}
// Create the PrivateKey as EVP_PKEY
EVP_PKEY *pkey = PEM_read_bio_PrivateKey(bio, NULL, 0, NULL);
if (pkey == NULL) {
croak("Failed operation error code %d\n", errno);
}
// This uses "Magic" to hold the private key object
// so it can be accessed later
HV * attributes = newHV();
sv_magicext(key, NULL, PERL_MAGIC_ext,
&key_magic, (const char *)pkey, 0);
if((hv_store(attributes, "privkey", 7, key, 0)) == NULL)
croak("unable to init privkey store");
if (format != NULL)
if((hv_store(attributes, "format", 6, newRV_inc(format), 0)) == NULL)
croak("unable to init format store");
if (digest != NULL)
if((hv_store(attributes, "digest", 6, newRV_inc(digest), 0)) == NULL)
croak("unable to init digest store");
if((hv_store(attributes, "days", 4, newSViv(days), 0)) == NULL)
croak("unable to init days store");
SV *const self = newRV_noinc( (SV *)attributes );
RETVAL = sv_bless( self, gv_stashpv( class, 0 ) );
OUTPUT:
RETVAL
char * get_digest(self)
HV * self;
CODE:
SV **svp;
// Get the output format - default is pem format
if (hv_exists(self, "digest", strlen("digest"))) {
svp = hv_fetch(self, "digest", strlen("digest"), 0);
if (SvROK(*svp)) {
RETVAL = SvPV_nolen(SvRV(*svp));
}
}
else {
//FIXME this should probably get the default for openssl
//but since nothing was set this is likely most accurate
RETVAL = SvPV_nolen(newSVpv("",0));
}
OUTPUT:
RETVAL
IV set_digest(self, SV* digest)
HV * self;
CODE:
const char * digestname = NULL;
STRLEN digestname_length;
RETVAL = 0;
// Get digestname parameter - verify that it is valid
#if OPENSSL_API_COMPAT >= 30101
const EVP_MD *dgst;
#else
EVP_MD * md = NULL;
#endif
if (digest != NULL) {
digestname = (const char*) SvPV(digest, digestname_length);
// printf("Digest Name: %s\n", digestname);
md = (EVP_MD *)EVP_get_digestbyname(digestname);
}
if (md != NULL) {
if((hv_store(self, "digest", 6, newRV_inc(digest), 0)) == NULL)
RETVAL = 0;
else
RETVAL = 1;
} else {
//printf("Can't change digets to %s\n", digestname);
}
OUTPUT:
RETVAL
char * get_format(self)
HV * self;
CODE:
SV **svp;
// Get the output format - default is pem format
if (hv_exists(self, "format", strlen("format"))) {
svp = hv_fetch(self, "format", strlen("format"), 0);
if (SvROK(*svp)) {
RETVAL = SvPV_nolen(SvRV(*svp));
}
}
else {
RETVAL = SvPV_nolen(newSVpv("",0));
}
OUTPUT:
RETVAL
IV set_format(self, SV* format)
HV * self;
CODE:
IV ret = 0;
if (sv_cmp(format, newSVpv("pem", 0)) == 0 ||
sv_cmp(format, newSVpv("text", 0)) == 0 )
{
if((hv_store(self, "format", 6, newRV_inc(format), 0)) == NULL)
RETVAL = 0;
else
RETVAL = 1;
} else {
RETVAL = ret;
}
OUTPUT:
RETVAL
IV get_days(self)
HV * self;
CODE:
SV **svp;
// Get the number of days for specified - default 365
if (hv_exists(self, "days", strlen("days"))) {
svp = hv_fetch(self, "days", strlen("days"), 0);
if (SvIOKp(*svp)) {
RETVAL = SvIV(*svp);
}
}
OUTPUT:
RETVAL
IV set_days(self, IV days)
HV * self;
CODE:
if((hv_store(self, "days", 4, newSViv(days), 0)) == NULL)
RETVAL = 0;
else
RETVAL = 1;
OUTPUT:
RETVAL
SV * sign(self, request_SV, sigopts)
HV * self;
SV * request_SV;
PREINIT:
EVP_MD_CTX *mctx;
STACK_OF(OPENSSL_STRING) *sigopts = NULL;
CODE:
SV **svp;
MAGIC* mg;
EVP_PKEY *private_key;
X509_REQ * csr;
int rv = 0;
STRLEN request_length;
unsigned char* request;
BIO *csrbio;
const char * digestname;
STRLEN digestname_length;
IV days;
SV * digest = NULL;
SV * format;
if (!hv_exists(self, "privkey", strlen("privkey")))
croak("privkey not found in self!\n");
svp = hv_fetch(self, "privkey", strlen("privkey"), 0);
if (!SvMAGICAL(*svp) || (mg = mg_findext(*svp, PERL_MAGIC_ext, &key_magic)) == NULL)
croak("privkey is invalid");
if (!hv_exists(self, "days", strlen("days")))
croak("days not found in self!\n");
svp = hv_fetch(self, "days", strlen("days"), 0);
if (SvIOKp(*svp)) {
days = SvIV(*svp);
}
else {
days = 365;
}
if (hv_exists(self, "digest", strlen("digest"))) {
svp = hv_fetch(self, "digest", strlen("digest"), 0);
if (SvROK(*svp)) {
digest = SvRV(*svp);
}
}
//printf("Digest: %s\n", (char *) SvPV_nolen(digest));
if (!hv_exists(self, "format", strlen("format")))
croak("format not found in self!\n");
svp = hv_fetch(self, "format", strlen("format"), 0);
if (SvROK(*svp)) {
format = SvRV(*svp);
}
private_key = (EVP_PKEY *) mg->mg_ptr;
// Get the request that was passed into the sign function
request = (unsigned char*) SvPV(request_SV, request_length);
// Create the X509_REQ from the request
csrbio = BIO_new_mem_buf(request, request_length);
if (csrbio == NULL) {
croak ("Bio for CRS Request is null **** \n");
}
csr = PEM_read_bio_X509_REQ(csrbio, NULL, NULL, NULL);
if (csr == NULL) {
croak ("PEM_read_bio_X509_REQ failed **** \n");
}
// Verify the CSR is properly signed
EVP_PKEY *pkey;
if (csr != NULL) {
#if OPENSSL_API_COMPAT <= 10100
pkey = X509_REQ_get_pubkey(csr);
#else
pkey = X509_REQ_get0_pubkey(csr);
#endif
if (pkey == NULL)
croak ("Warning: unable to get public key from CSR\n");
int ret = do_X509_REQ_verify(csr, pkey, NULL);
if (ret == 0)
croak ("Verification of CSR failed\n");
if ( ret < 0)
croak ("Warning: error while verifying CSR self-signature\n");
}
else
croak("Unable to properly parse the Certificate Signing Request\n");
// Create a new certificate store
X509 * x;
#if OPENSSL_API_COMPAT >= 30101
if ((x = X509_new_ex(libctx, propq)) == NULL)
#else
if ((x = X509_new()) == NULL)
#endif
croak("X509_new_ex failed ...\n");
// FIXME need to look at this
int ext_copy = EXT_COPY_UNSET;
if (!copy_extensions(x, csr, ext_copy))
croak("Unable to copy extensions\n");
// Update the certificate with the CSR's subject name
if (!X509_set_subject_name(x, X509_REQ_get_subject_name(csr)))
croak("X509_set_subject_name cannot set subject name\n");
// Update the certificate with the CSR's public key
#if OPENSSL_API_COMPAT <= 10100
if (!X509_set_pubkey(x, X509_REQ_get_pubkey(csr)))
#else
if (!X509_set_pubkey(x, X509_REQ_get0_pubkey(csr)))
#endif
croak("X509_set_pubkey cannot set public key\n");
// FIXME need to look at this
//for (int i = X509_get_ext_count(x) - 1; i >= 0; i--) {
// X509_EXTENSION *ex = X509_get_ext(x, i);
// const char *sn = OBJ_nid2sn(OBJ_obj2nid(X509_EXTENSION_get_object(ex)));
// if (clrext || (ext_names != NULL && strstr(ext_names, sn) == NULL))
// X509_EXTENSION_free(X509_delete_ext(x, i));
//}
// FIXME - this may need to change to support signing by different certificates
if (private_key != NULL && !cert_matches_key(x, private_key))
croak("cert_matches_key: signature key and public key of cert do not match\n");
// Generate a serial number and update the certificate
ASN1_INTEGER *sno = ASN1_INTEGER_new();
if (sno == NULL || !rand_serial(NULL, sno))
croak ("Unable to get ASN1INTEGER or random_serial\n");
if (sno != NULL && !X509_set_serialNumber(x, sno))
croak("X509_set_serialNumber cannot set serial number\n");
set_cert_times(x, NULL, NULL, (int) days);
// Set the certificate's issuer based on the issuer's certificate
// In self-signed certificates it is the same issuer
// FIXME this needs to be fixed to support non-self-signed certificate
X509 * issuer_cert = x;
if (!X509_set_issuer_name(x, X509_get_subject_name(issuer_cert)))
croak("X509_set_issuer_name cannot set issuer name\n");
// Create the X509 v3 extensions for the certificate
X509V3_CTX ext_ctx;
// Set the certificate issuer from the private key
#if OPENSSL_API_COMPAT >= 30000
X509V3_set_ctx(&ext_ctx, issuer_cert, x, NULL, NULL, X509V3_CTX_REPLACE);
if (!X509V3_set_issuer_pkey(&ext_ctx, private_key))
croak("X509V3_set_issuer_pkey cannot set issuer private key\n");
#elseif OPENSSL_API_COMPAT >=10010
X509V3_set_ctx(&ext_ctx, issuer_cert, x, csr, NULL, X509V3_CTX_REPLACE);
#else
X509V3_set_ctx(&ext_ctx, issuer_cert, x, csr, NULL, 0);
#endif
// Set the X509 version of the certificate
#if OPENSSL_API_COMPAT >= 30000
if (!X509_set_version(x, X509_VERSION_3))
#else
if (!X509_set_version(x, 2))
#endif
croak("X509_set_version cannot set version 3\n");
// Get digestname parameter - verify that it is valid
#if OPENSSL_API_COMPAT >= 30101
const EVP_MD *dgst;
#else
EVP_MD * md = NULL;
#endif
if (digest != NULL) {
digestname = (const char*) SvPV(digest, digestname_length);
md = (EVP_MD *)EVP_get_digestbyname(digestname);
}
if (md != NULL)
digestname = (const char *) digestname;
else {
digestname = NULL;
printf("Failed to set the digest md = Null\n");
}
//printf ("DIGEST NAME = %s\n", digestname);
// Allocate and a new digest context for certificate signing
#if OPENSSL_API_COMPAT <= 10100
mctx = EVP_MD_CTX_create();
#else
mctx = EVP_MD_CTX_new();
#endif
// Sign the new certificate
#if OPENSSL_API_COMPAT >= 30101
if (mctx != NULL && do_sign_init(mctx, private_key, digestname, sigopts) > 0)
#else
if (mctx != NULL && do_sign_init(mctx, private_key, md, sigopts) > 0)
#endif
rv = (X509_sign_ctx(x, mctx) > 0);
if (rv == 0)
croak("X509_sign_ctx cannot sign the new certificate\n");
// Prepare to output new certificate
BIO * out = BIO_new(BIO_s_mem());
int i;
if (sv_cmp(format, newSVpv("pem", 0)) == 0){
// Output the PEM encoded certificate
i = PEM_write_bio_X509(out, x);}
else
// Output the text format of the certificate
i = X509_print_ex(out, x, get_nameopt(), 0);
if (!i)
croak("unable to output certificate data\n");
RETVAL = extractBioString(aTHX_ out);
OUTPUT:
RETVAL