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
|
/* $Id: cyberflex.c,v 1.2 2001/06/28 21:29:45 rees Exp $ */
/*
copyright 1999, 2000
the regents of the university of michigan
all rights reserved
permission is granted to use, copy, create derivative works
and redistribute this software and such derivative works
for any purpose, so long as the name of the university of
michigan is not used in any advertising or publicity
pertaining to the use or distribution of this software
without specific, written prior authorization. if the
above copyright notice or any other identification of the
university of michigan is included in any copy of any
portion of this software, then the disclaimer below must
also be included.
this software is provided as is, without representation
from the university of michigan as to its fitness for any
purpose, and without warranty by the university of
michigan of any kind, either express or implied, including
without limitation the implied warranties of
merchantability and fitness for a particular purpose. the
regents of the university of michigan shall not be liable
for any damages, including special, indirect, incidental, or
consequential damages, with respect to any claim arising
out of or in connection with the use of the software, even
if it has been or is hereafter advised of the possibility of
such damages.
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <fcntl.h>
#ifdef __linux
#include <openssl/des.h>
#else /* __linux */
#include <des.h>
#endif
#include <sectok.h>
#include "sc.h"
#ifdef __sun
#define des_set_key(key, schedule) des_key_sched(key, schedule)
#endif
#define MAX_KEY_FILE_SIZE 1024
#define NUM_RSA_KEY_ELEMENTS 5
#define RSA_BIT_LEN 1024
#define KEY_FILE_HEADER_SIZE 8
static unsigned char key_fid[] = {0x00, 0x11};
static unsigned char DFLTATR[] = {0x81, 0x10, 0x06, 0x01};
static unsigned char AUT0[] = {0xad, 0x9f, 0x61, 0xfe, 0xfa, 0x20, 0xce, 0x63};
/* default signed applet key of Cyberflex Access */
static des_cblock app_key = {0x6A, 0x21, 0x36, 0xF5, 0xD8, 0x0C, 0x47, 0x83};
char *apptype[] = {
"?",
"applet",
"app",
"app/applet",
};
char *appstat[] = {
"?",
"created",
"installed",
"registered",
};
char *filestruct[] = {
"binary",
"fixed rec",
"variable rec",
"cyclic",
"program",
};
int jdefault(int ac, char *av[])
{
unsigned char buf[8];
int i, p1 = 4, r1, r2;
optind = optreset = 1;
while ((i = getopt(ac, av, "d")) != -1) {
switch (i) {
case 'd':
p1 = 5;
break;
}
}
if (fd < 0)
reset(0, NULL);
scwrite(fd, cla, 0x08, p1, 0, 0, buf, &r1, &r2);
if (r1 != 0x90) {
/* error */
print_r1r2(r1, r2);
return -1;
}
return 0;
}
int jatr(int ac, char *av[])
{
unsigned char buf[64];
int n = 0, r1, r2;
if (fd < 0)
reset(0, NULL);
buf[n++] = 0x90;
buf[n++] = 0x94; /* TA1 */
buf[n++] = 0x40; /* TD1 */
buf[n++] = 0x28; /* TC2 (WWT=4sec) */
if (ac > optind) {
/* set historical bytes from command line */
n += parse_input(av[1], &buf[n], 15);
} else {
/* no historical bytes given, use default */
memmove(&buf[n], DFLTATR, sizeof DFLTATR);
n += sizeof DFLTATR;
}
buf[0] |= ((n - 2) & 0xf);
scwrite(fd, cla, 0xfa, 0, 0, n, buf, &r1, &r2);
if (r1 != 0x90) {
/* error */
print_r1r2(r1, r2);
return -1;
}
return 0;
}
int jdata(int ac, char *av[])
{
unsigned char buf[32];
int i, r1, r2;
if (fd < 0)
reset(0, NULL);
scread(fd, cla, 0xca, 0, 1, 0x16, buf, &r1, &r2);
if (r1 == 0x90) {
printf("serno ");
for (i = 0; i < 6; i++)
printf("%02x ", buf[i]);
printf("batch %02x sver %d.%02d ", buf[6], buf[7], buf[8]);
if (buf[9] == 0x0c)
printf("augmented ");
else if (buf[9] == 0x0b)
;
else
printf("unknown ");
printf("crypto %9.9s class %02x\n", &buf[10], buf[19]);
} else {
/* error */
print_r1r2(r1, r2);
}
return 0;
}
#define JDIRSIZE 40
int ls(int ac, char *av[])
{
int p2, f0, f1, r1, r2;
char ftype[32], fname[6];
unsigned char buf[JDIRSIZE];
if (fd < 0)
reset(0, NULL);
for (p2 = 0; ; p2++) {
if (scread(fd, cla, 0xa8, 0, p2, JDIRSIZE, buf, &r1, &r2) < 0)
break;
if (r1 != 0x90)
break;
f0 = buf[4];
f1 = buf[5];
if (f0 == 0xff || f0 + f1 == 0)
continue;
sectok_fmt_fid(fname, f0, f1);
if (buf[6] == 1)
/* root */
sprintf(ftype, "root");
else if (buf[6] == 2) {
/* DF */
if (buf[12] == 27)
sprintf(ftype, "%s %s", appstat[buf[10]], apptype[buf[9]]);
else
sprintf(ftype, "directory");
} else if (buf[6] == 4)
/* EF */
sprintf(ftype, "%s", filestruct[buf[13]]);
printf("%4s %5d %s\n", fname, (buf[2] << 8) | buf[3], ftype);
}
return 0;
}
int jaut(int ac, char *av[])
{
if (fd < 0)
reset(0, NULL);
cla = cyberflex_inq_class(fd);
printf("Class %02x\n", cla);
return cyberflex_verify_AUT0(fd, cla, AUT0, sizeof AUT0);
}
#define MAX_BUF_SIZE 256
#define MAX_APP_SIZE 4096
#define MAX_APDU_SIZE 0xfa
#define BLOCK_SIZE 8
#define MAXTOKENS 16
unsigned char *app_name;
unsigned char progID[2], contID[2], aid[MAX_BUF_SIZE];
int cont_size, inst_size;
int aid_len;
int analyze_load_options(int ac, char *av[])
{
int i, rv;
progID[0] = 0x77;
progID[1] = 0x77;
contID[0] = 0x77;
contID[1] = 0x78;
cont_size = 1152;
inst_size = 1024;
aid_len = 5;
for (i = 0 ; i < 16 ; i ++)
aid[i] = 0x77;
/* applet file name */
app_name = av[ac - 1];
optind = optreset = 1;
/* switch on options */
while (1) {
rv = getopt (ac, av, "p:c:s:i:a:");
if (rv == -1) break;
/*printf ("rv=%c, optarg=%s\n", rv, optarg);*/
switch (rv) {
case 'p':
parse_input(optarg, progID, 2);
break;
case 'c':
parse_input(optarg, contID, 2);
break;
case 's':
sscanf(optarg, "%d", &cont_size);
break;
case 'i':
sscanf(optarg, "%d", &inst_size);
break;
case 'a':
aid_len = parse_input(optarg, aid, sizeof aid);
/*printf ("aid_len = %d\n", aid_len);*/
break;
default:
printf ("unknown option. command aborted.\n");
return -1;
}
}
return 0;
}
int jload(int ac, char *av[])
{
char progname[5], contname[5];
unsigned char app_data[MAX_APP_SIZE],
data[MAX_BUF_SIZE];
int i, j, fd_app, size, rv, r1, r2;
des_cblock tmp;
des_key_schedule schedule;
if (analyze_load_options(ac, av) < 0)
return -1;
if (fd < 0)
reset(0, NULL);
sectok_fmt_fid(progname, progID[0], progID[1]);
sectok_fmt_fid(contname, contID[0], contID[1]);
printf ("applet file \"%s\"\n", app_name);
printf ("program ID %s\n", progname);
printf ("container ID %s\n", contname);
printf ("instance container size %d\n", cont_size);
printf ("instance data size %d\n", inst_size);
printf ("AID ");
for (i = 0 ; i < aid_len ; i ++ )
printf ("%02x", (unsigned char)aid[i]);
printf ("\n");
/* open the input file */
fd_app = open (app_name, O_RDONLY, NULL);
if (fd_app == -1) {
fprintf (stderr, "cannot open file \"%s\"\n", app_name);
return -1;
}
/* read the input file */
size = read (fd_app, app_data, MAX_APP_SIZE);
if (size == 0) {
fprintf (stderr, "file %s size 0??\n", app_name);
return -1;
}
if (size == -1) {
fprintf (stderr, "error reading file %s\n", app_name);
return -1;
}
/*printf ("file size %d\n", size);*/
/* size must be able to be divided by BLOCK_SIZE */
if (size % BLOCK_SIZE != 0) {
fprintf (stderr, "file (%s) size cannot be divided by BLOCK_SIZE.\n",
app_name);
return -1;
}
/* compute the signature of the applet */
/* initialize the result buffer */
for (j = 0; j < BLOCK_SIZE; j++ ) {
tmp[j] = 0;
}
/* chain. DES encrypt one block, XOR the cyphertext with the next block,
... continues until the end of the buffer */
des_set_key (&app_key, schedule);
for (i = 0; i < size/BLOCK_SIZE; i++) {
for (j = 0; j < BLOCK_SIZE; j++ ){
tmp[j] = tmp[j] ^ app_data[i*BLOCK_SIZE + j];
}
des_ecb_encrypt (&tmp, &tmp, schedule, DES_ENCRYPT);
}
/* print out the signature */
printf ("signature ");
for (j = 0; j < BLOCK_SIZE; j++ ) {
printf ("%02x", tmp[j]);
}
printf ("\n");
/* select the default loader */
rv = scwrite(fd, cla, 0xa4, 0x04, 0, 0, NULL, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("can't select default loader: %s\n", get_r1r2s(r1, r2));
return -1;
}
/* select 3f.00 (root) */
if (sectok_selectfile(fd, cla, root_fid, &r1, &r2) < 0)
return -1;
/* create program file */
if (cyberflex_create_file(fd, cla, progID, size, 3, &r1, &r2) < 0) {
/* error */
printf("can't create %s: %s\n", progname, get_r1r2s(r1, r2));
return -1;
}
/* update binary */
for (i = 0; i < size; i += MAX_APDU_SIZE) {
int send_size;
/* compute the size to be sent */
if (size - i > MAX_APDU_SIZE) send_size = MAX_APDU_SIZE;
else send_size = size - i;
rv = scwrite(fd, cla, 0xd6,
i / 256, /* offset, upper byte */
i % 256, /* offset, lower byte */
send_size,
app_data + i, /* program file */
&r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("updating binary %s: %s\n", progname, get_r1r2s(r1, r2));
return -1;
}
}
/* manage program .. validate */
rv = scwrite(fd, cla, 0x0a, 01, 0, 0x08,
tmp, /* signature */
&r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("validating applet in %s: %s\n", progname, get_r1r2s(r1, r2));
return -1;
}
/* select the default loader */
rv = scwrite(fd, cla, 0xa4, 0x04, 0, 0, NULL, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("selecting default loader: %s\n", get_r1r2s(r1, r2));
return -1;
}
/* execute method -- call the install() method in the cardlet.
cardlet type 01 (applet, not application)
program ID (7777)
instance container size (0800 (1152))
instance container ID (7778)
instance data size (0400 (1024))
AID length (0005 (5 byte))
AID (7777777777) */
data[0] = 0x01; /* cardlet type = 1 (applet, not application) */
data[1] = progID[0]; /* FID, upper */
data[2] = progID[1]; /* FID, lower */
data[3] = cont_size / 256; /* instance container size 0x0800 (1152) byte, upper */
data[4] = cont_size % 256; /* instance container size 0x0800 (1152) byte, lower */
data[5] = contID[0]; /* container ID (7778), upper */
data[6] = contID[1]; /* container ID (7778), lower */
data[7] = inst_size / 256; /* instance size 0x0400 (1024) byte, upper */
data[8] = inst_size % 256; /* instance size 0x0400 (1024) byte, lower */
data[9] = 0x00; /* AID length 0x0005, upper */
data[10] = aid_len; /* AID length 0x0005, lower */
for (i = 0; i < aid_len; i++) data[i + 11] = (unsigned int)aid[i];
/* AID (7777777777) */
rv = scwrite(fd, cla, 0x0c, 0x13, 0, 11 + aid_len, data, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("executing install() method in applet %s: %s\n", progname, get_r1r2s(r1, r2));
return -1;
}
/* That's it! :) */
return 0;
}
int junload(int ac, char *av[])
{
char progname[5], contname[5];
int r1, r2, rv;
if (analyze_load_options(ac, av) < 0)
return -1;
if (fd < 0)
reset(0, NULL);
sectok_fmt_fid(progname, progID[0], progID[1]);
sectok_fmt_fid(contname, contID[0], contID[1]);
printf ("program ID %s\n", progname);
printf ("container ID %s\n", contname);
/*printf ("AID ");
for (i = 0 ; i < aid_len ; i ++ ) {
printf ("%02x", (unsigned char)aid[i]);
}
printf ("\n");*/
/*printf ("unload applet\n");*/
/* select 3f.00 (root) */
if (sectok_selectfile(fd, cla, root_fid, &r1, &r2) < 0)
return -1;
/* select program file */
if (sectok_selectfile(fd, cla, progID, &r1, &r2) >= 0) {
/* manage program -- reset */
rv = scwrite(fd, cla, 0x0a, 02, 0, 0x0, NULL, &r1, &r2);
if (rv < 0 || (r1 != 0x90 && r1 != 0x61)) {
/* error */
printf("resetting applet: %s\n", get_r1r2s(r1, r2));
}
/* delete program file */
if (cyberflex_delete_file(fd, cla, progID[0], progID[1], &r1, &r2) < 0)
printf("delete_file %s: %s\n", progname, get_r1r2s(r1, r2));
} else
printf ("no program file... proceed to delete data container\n");
/* delete data container */
if (cyberflex_delete_file(fd, cla, contID[0], contID[1], &r1, &r2) < 0)
printf("delete_file %s: %s\n", contname, get_r1r2s(r1, r2));
return 0;
}
int jselect(int ac, char *av[])
{
int i, r1, r2, rv;
unsigned char data[MAX_BUF_SIZE];
optind = optreset = 1;
if (analyze_load_options(ac, av) < 0)
return -1;
if (fd < 0)
reset(0, NULL);
printf ("select applet\n");
printf ("AID ");
for (i = 0 ; i < aid_len ; i ++ )
printf ("%02x", (unsigned char)aid[i]);
printf ("\n");
/* select data container (77.78) */
/*rv = sectok_selectfile (fd, cla, root_fid, 0);
if (rv < 0) return rv;
rv = sectok_selectfile (fd, cla, contID, 0);
if (rv < 0) return rv;*/
/* select the cardlet (7777777777) */
for (i = 0; i < aid_len; i++) data[i] = (unsigned char)aid[i];
/* quick hack in select_applet()
even with F0 card, select applet APDU (00 a4 04)
only accepts class byte 00 (not f0) */
rv = scwrite(fd, cla, 0xa4, 0x04, 0, aid_len, data, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf ("selecting the cardlet: ");
for (i = 0 ; i < aid_len ; i ++ ) {
printf ("%02x", (unsigned char)aid[i]);
}
printf ("\n");
print_r1r2 (r1, r2);
return -1;
}
return 0;
}
int jdeselect(int ac, char *av[])
{
int r1, r2, rv;
if (fd < 0)
reset(0, NULL);
rv = scwrite(fd, cla, 0xa4, 0x04, 0, 0x00, NULL, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf ("selecting the default loader: ");
print_r1r2 (r1, r2);
return -1;
}
return 0;
}
#define DELIMITER " :\t\n"
#define KEY_BLOCK_SIZE 14
/* download DES keys into 3f.00/00.11 */
int cyberflex_load_key (int fd, unsigned char *buf)
{
int r1, r2, rv, argc = 0, i, j, tmp;
unsigned char *token;
unsigned char data[MAX_BUF_SIZE];
unsigned char key[BLOCK_SIZE];
#if 0
/* select the default loader */
rv = scwrite(fd, cla, 0xa4, 0x04, 0, 0x00, NULL, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
// error
printf ("selecting the default loader: ");
print_r1r2 (r1, r2);
return -1;
}
#endif
printf ("ca_load_key buf=%s\n", buf);
token = strtok (buf, DELIMITER);
token = strtok (NULL, DELIMITER);
if (token == NULL) {
printf ("Usage: jk number_of_keys\n");
return -1;
}
argc = atoi (token);
if (argc > 2) {
printf ("current Cyberflex Access cannot download more than 2 keys to the key file. Sorry. :(\n");
return -1;
}
if (argc < 0) {
printf ("you want to down load %d keys??\n", argc);
return -1;
}
/* Now let's do it. :) */
/* add the AUT0 */
cyberflex_fill_key_block (data, 0, 1, AUT0);
/* add the applet sign key */
cyberflex_fill_key_block (data+KEY_BLOCK_SIZE, 5, 0, app_key);
/* then add user defined keys */
for ( i = 0 ; i < argc ; i++ ) {
printf ("key %d : ", i);
for ( j = 0 ; j < BLOCK_SIZE ; j++ ) {
fscanf (cmdf, "%02x", &tmp);
key[j] = (unsigned char)tmp;
}
cyberflex_fill_key_block (data + 28 + i*KEY_BLOCK_SIZE, 6 + i, 0, key);
}
/* add the suffix */
data[28 + argc*KEY_BLOCK_SIZE] = 0;
data[28 + argc*KEY_BLOCK_SIZE + 1] = 0;
for ( i = 0 ; i < KEY_BLOCK_SIZE * (argc + 2) + 2; i++ )
printf ("%02x ", data[i]);
printf ("\n");
/* select 3f.00 (root) */
if (sectok_selectfile(fd, cla, root_fid, &r1, &r2) < 0)
return -1;
/* select 00.11 (key file) */
if (sectok_selectfile(fd, cla, key_fid, &r1, &r2) < 0)
return -1;
/* all righty, now let's send it to the card! :) */
rv = scwrite(fd, cla, 0xd6, 0, 0, KEY_BLOCK_SIZE * (argc + 2) + 2,
data, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("writing the key file 00.11: %s\n", get_r1r2s(r1, r2));
return -1;
}
return 0;
}
/* download AUT0 key into 3f.00/00.11 */
int load_AUT0(int fd, unsigned char *buf)
{
int r1, r2, rv, i, tmp;
unsigned char data[MAX_BUF_SIZE];
unsigned char key[BLOCK_SIZE];
printf ("load AUT0\n");
printf ("ca_load_AUT0 buf=%s\n", buf);
/* Now let's do it. :) */
/* get the AUT0 */
printf ("input AUT0 : ");
for ( i = 0 ; i < BLOCK_SIZE ; i++ ) {
fscanf (cmdf, "%02x", &tmp);
key[i] = (unsigned char)tmp;
}
cyberflex_fill_key_block (data, 0, 1, key);
#if 0
/* add the suffix */
data[KEY_BLOCK_SIZE] = 0;
data[KEY_BLOCK_SIZE + 1] = 0;
#endif
for ( i = 0 ; i < KEY_BLOCK_SIZE ; i++ )
printf ("%02x ", data[i]);
printf ("\n");
/* select 3f.00 (root) */
if (sectok_selectfile(fd, cla, root_fid, &r1, &r2) < 0)
return -1;
/* select 00.11 (key file) */
if (sectok_selectfile(fd, cla, key_fid, &r1, &r2) < 0)
return -1;
/* all righty, now let's send it to the card! :) */
rv = scwrite(fd, cla, 0xd6, 0, 0, KEY_BLOCK_SIZE,
data, &r1, &r2);
if (r1 != 0x90 && r1 != 0x61) {
/* error */
printf("writing the key file 00.11: %s\n", get_r1r2s(r1, r2));
return -1;
}
return 0;
}
/* download RSA private key into 3f.00/00.12 */
int cyberflex_load_rsa(int fd, unsigned char *buf)
{
int rv, r1, r2, i, j, tmp;
static unsigned char key_fid[] = {0x00, 0x12};
static char *key_names[NUM_RSA_KEY_ELEMENTS]= {"p", "q", "1/p mod q",
"d mod (p-1)", "d mod (q-1)"};
unsigned char *key_elements[NUM_RSA_KEY_ELEMENTS];
printf ("ca_load_rsa_priv buf=%s\n", buf);
printf ("input 1024 bit RSA CRT key\n");
for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++) {
printf ("%s (%d bit == %d byte) : ", key_names[i],
RSA_BIT_LEN/2, RSA_BIT_LEN/2/8);
key_elements[i] = (unsigned char *) malloc(RSA_BIT_LEN/8);
for ( j = 0 ; j < RSA_BIT_LEN/8/2 ; j++ ) {
fscanf (cmdf, "%02x", &tmp);
key_elements[i][j] = (unsigned char)tmp;
}
}
#ifdef DEBUG
printf ("print RSA CRT key\n");
for (i = 0 ; i < NUM_RSA_KEY_ELEMENTS ; i ++ ) {
printf ("%s : ", key_names[i]);
for ( j = 0 ; j < RSA_BIT_LEN/8/2 ; j++ ) {
printf ("%02x ", key_elements[i][j]);
}
}
#endif
rv = cyberflex_load_rsa_priv(fd, cla, key_fid, NUM_RSA_KEY_ELEMENTS, RSA_BIT_LEN,
key_elements, &r1, &r2);
if (rv < 0)
printf("load_rsa_priv: %s\n", get_r1r2s(r1, r2));
for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)
free(key_elements[i]);
return rv;
}
|