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
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
|
#!/bin/sh
#
# $OpenBSD: appstest.sh,v 1.43 2020/05/19 12:08:39 inoguchi Exp $
#
# Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
# appstest.sh - test script for openssl command according to man OPENSSL(1)
#
# input : none
# output : all files generated by this script go under $ssldir
#
function section_message {
echo ""
echo "#---------#---------#---------#---------#---------#---------#---------#--------"
echo "==="
echo "=== (Section) $1 `date +'%Y/%m/%d %H:%M:%S'`"
echo "==="
}
function start_message {
echo ""
echo "[TEST] $1"
}
function stop_s_server {
if [ ! -z "$s_server_pid" ] ; then
echo ":-| stop s_server [ $s_server_pid ]"
sleep 1
kill -TERM $s_server_pid
wait $s_server_pid
s_server_pid=
fi
}
function check_exit_status {
status=$1
if [ $status -ne 0 ] ; then
stop_s_server
echo ":-< error occurs, exit status = [ $status ]"
exit $status
else
echo ":-) success. "
fi
}
function usage {
echo "usage: appstest.sh [-egiq]"
}
function test_usage_lists_others {
# === COMMAND USAGE ===
section_message "COMMAND USAGE"
start_message "output usages of all commands."
cmds=`$openssl_bin list-standard-commands`
$openssl_bin -help 2>> $user1_dir/usages.out
for c in $cmds ; do
$openssl_bin $c -help 2>> $user1_dir/usages.out
done
start_message "check all list-* commands."
lists=""
lists="$lists list-standard-commands"
lists="$lists list-message-digest-commands list-message-digest-algorithms"
lists="$lists list-cipher-commands list-cipher-algorithms"
lists="$lists list-public-key-algorithms"
listsfile=$user1_dir/lists.out
for l in $lists ; do
echo "" >> $listsfile
echo "$l" >> $listsfile
$openssl_bin $l >> $listsfile
done
start_message "check interactive mode"
$openssl_bin <<__EOF__
help
quit
__EOF__
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- listing operations ---
section_message "listing operations"
start_message "ciphers"
$openssl_bin ciphers -V > $user1_dir/ciphers-V.out
check_exit_status $?
start_message "errstr"
$openssl_bin errstr 2606A074
check_exit_status $?
$openssl_bin errstr -stats 2606A074 > $user1_dir/errstr-stats.out
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- random number etc. operations ---
section_message "random number etc. operations"
start_message "passwd"
pass="test-pass-1234"
echo $pass | $openssl_bin passwd -stdin -1
check_exit_status $?
echo $pass | $openssl_bin passwd -stdin -apr1
check_exit_status $?
echo $pass | $openssl_bin passwd -stdin -crypt
check_exit_status $?
start_message "prime"
$openssl_bin prime 1
check_exit_status $?
$openssl_bin prime 2
check_exit_status $?
$openssl_bin prime -bits 64 -checks 3 -generate -hex -safe 5
check_exit_status $?
start_message "rand"
$openssl_bin rand -base64 100
check_exit_status $?
$openssl_bin rand -hex 100
check_exit_status $?
}
function test_md {
# === MESSAGE DIGEST COMMANDS ===
section_message "MESSAGE DIGEST COMMANDS"
start_message "dgst - See [MESSAGE DIGEST COMMANDS] section."
text="1234567890abcdefghijklmnopqrstuvwxyz"
dgstdat=$user1_dir/dgst.dat
echo $text > $dgstdat
hmac_key="test-hmac-key"
cmac_key="1234567890abcde1234567890abcde12"
dgstkey=$user1_dir/dgstkey.pem
dgstpass=test-dgst-pass
dgstpub=$user1_dir/dgstpub.pem
dgstsig=$user1_dir/dgst.sig
$openssl_bin genrsa -aes256 -passout pass:$dgstpass -out $dgstkey
check_exit_status $?
$openssl_bin pkey -in $dgstkey -passin pass:$dgstpass -pubout \
-out $dgstpub
check_exit_status $?
digests=`$openssl_bin list-message-digest-commands`
for d in $digests ; do
echo -n "$d ... "
$openssl_bin dgst -$d -hex -out $dgstdat.$d $dgstdat
check_exit_status $?
echo -n "$d HMAC ... "
$openssl_bin dgst -$d -c -hmac $hmac_key -out $dgstdat.$d.hmac \
$dgstdat
check_exit_status $?
echo -n "$d CMAC ... "
$openssl_bin dgst -$d -r -mac cmac -macopt cipher:aes-128-cbc \
-macopt hexkey:$cmac_key -out $dgstdat.$d.cmac $dgstdat
check_exit_status $?
echo -n "$d sign ... "
$openssl_bin dgst -sign $dgstkey -keyform pem \
-sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:8 \
-passin pass:$dgstpass -binary -out $dgstsig.$d $dgstdat
check_exit_status $?
echo -n "$d verify ... "
$openssl_bin dgst -verify $dgstpub \
-sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:8 \
-signature $dgstsig.$d $dgstdat
check_exit_status $?
echo -n "$d prverify ... "
$openssl_bin dgst -prverify $dgstkey -passin pass:$dgstpass \
-sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:8 \
-signature $dgstsig.$d $dgstdat
check_exit_status $?
done
}
function test_encoding_cipher {
# === ENCODING AND CIPHER COMMANDS ===
section_message "ENCODING AND CIPHER COMMANDS"
start_message "enc - See [ENCODING AND CIPHER COMMANDS] section."
text="1234567890abcdefghijklmnopqrstuvwxyz"
encfile=$user1_dir/encfile.dat
echo $text > $encfile
pass="test-pass-1234"
ciphers=`$openssl_bin list-cipher-commands`
for c in $ciphers ; do
echo -n "$c ... encoding ... "
$openssl_bin enc -$c -e -base64 -pass pass:$pass \
-in $encfile -out $encfile-$c.enc
check_exit_status $?
echo -n "decoding ... "
$openssl_bin enc -$c -d -base64 -pass pass:$pass \
-in $encfile-$c.enc -out $encfile-$c.dec
check_exit_status $?
echo -n "cmp ... "
cmp $encfile $encfile-$c.dec
check_exit_status $?
done
}
function test_key {
# === various KEY operations ===
section_message "various KEY operations"
key_pass=test-key-pass
# DH
start_message "gendh - Obsoleted by dhparam."
gendh2=$key_dir/gendh2.pem
$openssl_bin gendh -2 -out $gendh2 > $gendh2.log 2>&1
check_exit_status $?
start_message "dh - Obsoleted by dhparam."
$openssl_bin dh -in $gendh2 -check -text -out $gendh2.out
check_exit_status $?
if [ $no_long_tests = 0 ] ; then
start_message "dhparam - Superseded by genpkey and pkeyparam."
dhparam2=$key_dir/dhparam2.pem
$openssl_bin dhparam -2 -out $dhparam2 > $dhparam2.log 2>&1
check_exit_status $?
$openssl_bin dhparam -in $dhparam2 -check -text \
-out $dhparam2.out
check_exit_status $?
else
start_message "SKIPPING dhparam - Superseded by genpkey and pkeyparam. (quick mode)"
fi
# DSA
start_message "dsaparam - Superseded by genpkey and pkeyparam."
dsaparam512=$key_dir/dsaparam512.pem
$openssl_bin dsaparam -genkey -out $dsaparam512 512 \
> $dsaparam512.log 2>&1
check_exit_status $?
start_message "dsa"
$openssl_bin dsa -in $dsaparam512 -text -modulus -out $dsaparam512.out
check_exit_status $?
start_message "gendsa - Superseded by genpkey and pkey."
gendsa_des3=$key_dir/gendsa_des3.pem
$openssl_bin gendsa -des3 -out $gendsa_des3 \
-passout pass:$key_pass $dsaparam512
check_exit_status $?
# RSA
start_message "genrsa - Superseded by genpkey."
genrsa_aes256=$key_dir/genrsa_aes256.pem
$openssl_bin genrsa -f4 -aes256 -out $genrsa_aes256 \
-passout pass:$key_pass 2048 > $genrsa_aes256.log 2>&1
check_exit_status $?
start_message "rsa"
$openssl_bin rsa -in $genrsa_aes256 -passin pass:$key_pass \
-check -text -out $genrsa_aes256.out
check_exit_status $?
start_message "rsautl - Superseded by pkeyutl."
rsautldat=$key_dir/rsautl.dat
rsautlsig=$key_dir/rsautl.sig
echo "abcdefghijklmnopqrstuvwxyz1234567890" > $rsautldat
$openssl_bin rsautl -sign -in $rsautldat -inkey $genrsa_aes256 \
-passin pass:$key_pass -out $rsautlsig
check_exit_status $?
$openssl_bin rsautl -verify -in $rsautlsig -inkey $genrsa_aes256 \
-passin pass:$key_pass
check_exit_status $?
# EC
start_message "ecparam -list-curves"
$openssl_bin ecparam -list_curves -out $key_dir/ecparam-list_curves.out
check_exit_status $?
# get all EC curves
ec_curves=`$openssl_bin ecparam -list_curves | grep ':' | cut -d ':' -f 1`
start_message "ecparam and ec"
for curve in $ec_curves ;
do
ecparam=$key_dir/ecparam_$curve.pem
echo -n "ec - $curve ... ecparam ... "
$openssl_bin ecparam -out $ecparam -name $curve -genkey \
-param_enc explicit -conv_form compressed -C
check_exit_status $?
echo -n "ec ... "
$openssl_bin ec -in $ecparam -text \
-out $ecparam.out 2> /dev/null
check_exit_status $?
done
# PKEY
start_message "genpkey"
# DH by GENPKEY
genpkey_dh_param=$key_dir/genpkey_dh_param.pem
$openssl_bin genpkey -genparam -algorithm DH -out $genpkey_dh_param \
-pkeyopt dh_paramgen_prime_len:1024 > $genpkey_dh_param.log 2>&1
check_exit_status $?
genpkey_dh=$key_dir/genpkey_dh.pem
$openssl_bin genpkey -paramfile $genpkey_dh_param -out $genpkey_dh
check_exit_status $?
# DSA by GENPKEY
genpkey_dsa_param=$key_dir/genpkey_dsa_param.pem
$openssl_bin genpkey -genparam -algorithm DSA -out $genpkey_dsa_param \
-pkeyopt dsa_paramgen_bits:1024 > $genpkey_dsa_param.log 2>&1
check_exit_status $?
genpkey_dsa=$key_dir/genpkey_dsa.pem
$openssl_bin genpkey -paramfile $genpkey_dsa_param -out $genpkey_dsa
check_exit_status $?
# RSA by GENPKEY
genpkey_rsa=$key_dir/genpkey_rsa.pem
$openssl_bin genpkey -algorithm RSA -out $genpkey_rsa \
-pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:3 \
> $genpkey_rsa.log 2>&1
check_exit_status $?
genpkey_rsa_pss=$key_dir/genpkey_rsa_pss.pem
$openssl_bin genpkey -algorithm RSA-PSS -out $genpkey_rsa_pss \
-pkeyopt rsa_keygen_bits:2048 \
-pkeyopt rsa_pss_keygen_mgf1_md:sha256 \
-pkeyopt rsa_pss_keygen_md:sha256 \
-pkeyopt rsa_pss_keygen_saltlen:32 \
> $genpkey_rsa_pss.log 2>&1
check_exit_status $?
# EC by GENPKEY
genpkey_ec_param=$key_dir/genpkey_ec_param.pem
$openssl_bin genpkey -genparam -algorithm EC -out $genpkey_ec_param \
-pkeyopt ec_paramgen_curve:secp384r1
check_exit_status $?
genpkey_ec=$key_dir/genpkey_ec.pem
$openssl_bin genpkey -paramfile $genpkey_ec_param -out $genpkey_ec
check_exit_status $?
genpkey_ec_2=$key_dir/genpkey_ec_2.pem
$openssl_bin genpkey -paramfile $genpkey_ec_param -out $genpkey_ec_2
check_exit_status $?
start_message "pkeyparam"
$openssl_bin pkeyparam -in $genpkey_dh_param -text \
-out $genpkey_dh_param.out
check_exit_status $?
$openssl_bin pkeyparam -in $genpkey_dsa_param -text \
-out $genpkey_dsa_param.out
check_exit_status $?
$openssl_bin pkeyparam -in $genpkey_ec_param -text \
-out $genpkey_ec_param.out
check_exit_status $?
start_message "pkey"
$openssl_bin pkey -in $genpkey_dh -pubout -out $genpkey_dh.pub \
-text_pub
check_exit_status $?
$openssl_bin pkey -in $genpkey_dsa -pubout -out $genpkey_dsa.pub \
-text_pub
check_exit_status $?
$openssl_bin pkey -in $genpkey_rsa -pubout -out $genpkey_rsa.pub \
-text_pub
check_exit_status $?
$openssl_bin pkey -in $genpkey_ec -pubout -out $genpkey_ec.pub \
-text_pub
check_exit_status $?
$openssl_bin pkey -in $genpkey_ec_2 -pubout -out $genpkey_ec_2.pub \
-text_pub
check_exit_status $?
start_message "pkeyutl"
pkeyutldat=$key_dir/pkeyutl.dat
pkeyutlsig=$key_dir/pkeyutl.sig
echo "abcdefghijklmnopqrstuvwxyz1234567890" > $pkeyutldat
$openssl_bin pkeyutl -sign -in $pkeyutldat -inkey $genpkey_rsa \
-out $pkeyutlsig
check_exit_status $?
$openssl_bin pkeyutl -verify -in $pkeyutldat -sigfile $pkeyutlsig \
-inkey $genpkey_rsa
check_exit_status $?
$openssl_bin pkeyutl -verifyrecover -in $pkeyutlsig -inkey $genpkey_rsa
check_exit_status $?
pkeyutlenc=$key_dir/pkeyutl.enc
pkeyutldec=$key_dir/pkeyutl.dec
$openssl_bin pkeyutl -encrypt -in $pkeyutldat \
-pubin -inkey $genpkey_rsa.pub -out $pkeyutlenc
check_exit_status $?
$openssl_bin pkeyutl -decrypt -in $pkeyutlenc \
-inkey $genpkey_rsa -out $pkeyutldec
check_exit_status $?
diff $pkeyutldat $pkeyutldec
check_exit_status $?
pkeyutl_rsa_oaep_enc=$key_dir/pkeyutl_rsa_oaep.enc
pkeyutl_rsa_oaep_dec=$key_dir/pkeyutl_rsa_oaep.dec
$openssl_bin pkeyutl -encrypt -in $pkeyutldat \
-inkey $genpkey_rsa \
-pkeyopt rsa_padding_mode:oaep -pkeyopt rsa_oaep_md:sha256 \
-pkeyopt rsa_oaep_label:0011223344556677 \
-out $pkeyutl_rsa_oaep_enc
check_exit_status $?
$openssl_bin pkeyutl -decrypt -in $pkeyutl_rsa_oaep_enc \
-inkey $genpkey_rsa \
-pkeyopt rsa_padding_mode:oaep -pkeyopt rsa_oaep_md:sha256 \
-pkeyopt rsa_oaep_label:0011223344556677 \
-out $pkeyutl_rsa_oaep_dec
check_exit_status $?
diff $pkeyutldat $pkeyutl_rsa_oaep_dec
check_exit_status $?
pkeyutlsc1=$key_dir/pkeyutl.sc1
pkeyutlsc2=$key_dir/pkeyutl.sc2
$openssl_bin pkeyutl -derive -inkey $genpkey_ec \
-peerkey $genpkey_ec_2.pub -out $pkeyutlsc1 -hexdump
check_exit_status $?
$openssl_bin pkeyutl -derive -inkey $genpkey_ec_2 \
-peerkey $genpkey_ec.pub -out $pkeyutlsc2 -hexdump
check_exit_status $?
diff $pkeyutlsc1 $pkeyutlsc2
check_exit_status $?
}
function test_pki {
section_message "setup local CA"
#
# prepare test openssl.cnf
#
cat << __EOF__ > $ssldir/openssl.cnf
oid_section = new_oids
[ new_oids ]
tsa_policy1 = 1.2.3.4.1
tsa_policy2 = 1.2.3.4.5.6
tsa_policy3 = 1.2.3.4.5.7
[ ca ]
default_ca = CA_default
[ CA_default ]
dir = ./$ca_dir
crl_dir = \$dir/crl
database = \$dir/index.txt
new_certs_dir = \$dir/newcerts
serial = \$dir/serial
crlnumber = \$dir/crlnumber
default_days = 1
default_md = default
policy = policy_match
[ policy_match ]
countryName = match
stateOrProvinceName = match
organizationName = match
organizationalUnitName = optional
commonName = supplied
emailAddress = optional
[ req ]
distinguished_name = req_distinguished_name
[ req_distinguished_name ]
countryName = Country Name
countryName_default = JP
countryName_min = 2
countryName_max = 2
stateOrProvinceName = State or Province Name
stateOrProvinceName_default = Tokyo
organizationName = Organization Name
organizationName_default = TEST_DUMMY_COMPANY
commonName = Common Name
[ tsa ]
default_tsa = tsa_config1
[ tsa_config1 ]
dir = ./$tsa_dir
serial = \$dir/serial
crypto_device = builtin
digests = sha1, sha256, sha384, sha512
default_policy = tsa_policy1
other_policies = tsa_policy2, tsa_policy3
[ tsa_ext ]
keyUsage = critical,nonRepudiation
extendedKeyUsage = critical,timeStamping
[ ocsp_ext ]
basicConstraints = CA:FALSE
keyUsage = nonRepudiation,digitalSignature,keyEncipherment
extendedKeyUsage = OCSPSigning
__EOF__
#---------#---------#---------#---------#---------#---------#---------
#
# setup test CA
#
mkdir -p $ca_dir
mkdir -p $tsa_dir
mkdir -p $ocsp_dir
mkdir -p $server_dir
mkdir -p $ca_dir/certs
mkdir -p $ca_dir/private
mkdir -p $ca_dir/crl
mkdir -p $ca_dir/newcerts
chmod 700 $ca_dir/private
echo "01" > $ca_dir/serial
touch $ca_dir/index.txt
touch $ca_dir/crlnumber
echo "01" > $ca_dir/crlnumber
#
# setup test TSA
#
mkdir -p $tsa_dir/private
chmod 700 $tsa_dir/private
echo "01" > $tsa_dir/serial
touch $tsa_dir/index.txt
#
# setup test OCSP
#
mkdir -p $ocsp_dir/private
chmod 700 $ocsp_dir/private
#---------#---------#---------#---------#---------#---------#---------
# --- CA initiate (generate CA key and cert) ---
start_message "req ... generate CA key and self signed cert"
ca_cert=$ca_dir/ca_cert.pem
ca_key=$ca_dir/private/ca_key.pem ca_pass=test-ca-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=testCA.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=testCA.test_dummy.com\'
fi
$openssl_bin req -new -x509 -batch -newkey rsa:2048 \
-pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:3 \
-sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:8 \
-config $ssldir/openssl.cnf -verbose \
-subj $subj -days 1 -set_serial 1 -multivalue-rdn \
-keyout $ca_key -passout pass:$ca_pass \
-out $ca_cert -outform pem
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- TSA initiate (generate TSA key and cert) ---
start_message "req ... generate TSA key and cert"
# generate CSR for TSA
tsa_csr=$tsa_dir/tsa_csr.pem
tsa_key=$tsa_dir/private/tsa_key.pem
tsa_pass=test-tsa-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=testTSA.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=testTSA.test_dummy.com\'
fi
$openssl_bin req -new -keyout $tsa_key -out $tsa_csr \
-passout pass:$tsa_pass -subj $subj -asn1-kludge
check_exit_status $?
start_message "ca ... sign by CA with TSA extensions"
tsa_cert=$tsa_dir/tsa_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -keyform pem \
-key $ca_pass -config $ssldir/openssl.cnf -create_serial \
-policy policy_match -days 1 -md sha256 -extensions tsa_ext \
-sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:32 \
-multivalue-rdn -preserveDN -noemailDN \
-in $tsa_csr -outdir $tsa_dir -out $tsa_cert -verbose -notext \
> $tsa_cert.log 2>&1
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- OCSP initiate (generate OCSP key and cert) ---
start_message "req ... generate OCSP key and cert"
# generate CSR for OCSP
ocsp_csr=$ocsp_dir/ocsp_csr.pem
ocsp_key=$ocsp_dir/private/ocsp_key.pem
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=testOCSP.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=testOCSP.test_dummy.com\'
fi
$openssl_bin req -new -keyout $ocsp_key -nodes -out $ocsp_csr \
-subj $subj -no-asn1-kludge
check_exit_status $?
start_message "ca ... sign by CA with OCSP extensions"
ocsp_cert=$ocsp_dir/ocsp_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -keyform pem \
-key $ca_pass -out $ocsp_cert -extensions ocsp_ext \
-startdate `date -u '+%y%m%d%H%M%SZ'` -enddate 491223235959Z \
-subj $subj -infiles $ocsp_csr > $ocsp_cert.log 2>&1
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- server-admin operations (generate server key and csr) ---
section_message "server-admin operations (generate server key and csr)"
# RSA certificate
sv_rsa_key=$server_dir/sv_rsa_key.pem
sv_rsa_csr=$server_dir/sv_rsa_csr.pem
sv_rsa_pass=test-server-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=localhost.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=localhost.test_dummy.com\'
fi
start_message "genrsa ... generate server key#1"
$openssl_bin genrsa -aes256 -passout pass:$sv_rsa_pass -out $sv_rsa_key
check_exit_status $?
start_message "req ... generate server csr#1"
$openssl_bin req -new -subj $subj -sha256 \
-key $sv_rsa_key -keyform pem -passin pass:$sv_rsa_pass \
-addext 'subjectAltName = DNS:localhost.test_dummy.com' \
-out $sv_rsa_csr -outform pem
check_exit_status $?
start_message "req ... verify server csr#1"
$openssl_bin req -verify -in $sv_rsa_csr -inform pem \
-newhdr -noout -pubkey -subject -modulus -text \
-nameopt multiline -reqopt compatible \
-out $sv_rsa_csr.verify.out
check_exit_status $?
start_message "req ... generate server csr#2 (interactive mode)"
# RSA certificate (for revoke test)
revoke_key=$server_dir/revoke_key.pem
revoke_csr=$server_dir/revoke_csr.pem
revoke_pass=test-revoke-pass
$openssl_bin req -new -keyout $revoke_key -out $revoke_csr \
-passout pass:$revoke_pass <<__EOF__
JP
Tokyo
TEST_DUMMY_COMPANY
revoke.test_dummy.com
__EOF__
check_exit_status $?
# ECDSA certificate
sv_ecdsa_key=$server_dir/sv_ecdsa_key.pem
sv_ecdsa_csr=$server_dir/sv_ecdsa_csr.pem
sv_ecdsa_pass=test-ecdsa-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=ecdsa.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=ecdsa.test_dummy.com\'
fi
start_message "ecparam ... generate server key#3"
$openssl_bin ecparam -name prime256v1 -genkey -out $sv_ecdsa_key
check_exit_status $?
start_message "req ... generate server csr#3"
$openssl_bin req -new -subj $subj -sha256 \
-key $sv_ecdsa_key -keyform pem -passin pass:$sv_ecdsa_pass \
-addext 'subjectAltName = DNS:ecdsa.test_dummy.com' \
-out $sv_ecdsa_csr -outform pem
check_exit_status $?
start_message "req ... verify server csr#3"
$openssl_bin req -verify -in $sv_ecdsa_csr -inform pem \
-newhdr -noout -pubkey -subject -modulus -text \
-nameopt multiline -reqopt compatible \
-out $sv_ecdsa_csr.verify.out
check_exit_status $?
# GOST certificate
sv_gost_key=$server_dir/sv_gost_key.pem
sv_gost_csr=$server_dir/sv_gost_csr.pem
sv_gost_pass=test-gost-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=gost.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=gost.test_dummy.com\'
fi
start_message "genpkey ... generate server key#4"
$openssl_bin genpkey -algorithm GOST2001 -pkeyopt paramset:A \
-pkeyopt dgst:streebog512 -out $sv_gost_key
check_exit_status $?
start_message "req ... generate server csr#4"
$openssl_bin req -new -subj $subj -streebog512 \
-key $sv_gost_key -keyform pem -passin pass:$sv_gost_pass \
-addext 'subjectAltName = DNS:gost.test_dummy.com' \
-out $sv_gost_csr -outform pem
check_exit_status $?
start_message "req ... verify server csr#4"
$openssl_bin req -verify -in $sv_gost_csr -inform pem \
-newhdr -noout -pubkey -subject -modulus -text \
-nameopt multiline -reqopt compatible \
-out $sv_gost_csr.verify.out
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- CA operations (issue cert for server) ---
section_message "CA operations (issue cert for server)"
start_message "ca ... issue cert for server csr#1"
sv_rsa_cert=$server_dir/sv_rsa_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-in $sv_rsa_csr -out $sv_rsa_cert > $sv_rsa_cert.log 2>&1
check_exit_status $?
start_message "x509 ... issue cert for server csr#2"
revoke_cert=$server_dir/revoke_cert.pem
$openssl_bin x509 -req -in $revoke_csr -CA $ca_cert -CAform pem \
-CAkey $ca_key -CAkeyform pem \
-CAserial $ca_dir/serial -set_serial 10 \
-passin pass:$ca_pass -CAcreateserial -out $revoke_cert \
> $revoke_cert.log 2>&1
check_exit_status $?
start_message "ca ... issue cert for server csr#3"
sv_ecdsa_cert=$server_dir/sv_ecdsa_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-in $sv_ecdsa_csr -out $sv_ecdsa_cert > $sv_ecdsa_cert.log 2>&1
check_exit_status $?
start_message "ca ... issue cert for server csr#4"
sv_gost_cert=$server_dir/sv_gost_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-in $sv_gost_csr -out $sv_gost_cert > $sv_gost_cert.log 2>&1
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- CA operations (revoke cert and generate crl) ---
section_message "CA operations (revoke cert and generate crl)"
start_message "ca ... revoke server cert#2"
crl_file=$ca_dir/crl.pem
$openssl_bin ca -gencrl -out $crl_file -revoke $revoke_cert \
-config $ssldir/openssl.cnf -name CA_default \
-crldays 30 -crlhours 12 -crlsec 30 -updatedb \
-crl_reason unspecified -crl_hold 1.2.840.10040.2.2 \
-crl_compromise `date -u '+%Y%m%d%H%M%SZ'` \
-crl_CA_compromise `date -u '+%Y%m%d%H%M%SZ'` \
-keyfile $ca_key -passin pass:$ca_pass -cert $ca_cert \
> $crl_file.log 2>&1
check_exit_status $?
start_message "ca ... show certificate status by serial number"
$openssl_bin ca -config $ssldir/openssl.cnf -status 1
start_message "crl ... CA generates CRL"
$openssl_bin crl -in $crl_file -fingerprint >> $crl_file.log 2>&1
check_exit_status $?
crl_p7=$ca_dir/crl.p7
start_message "crl2pkcs7 ... convert CRL to pkcs7"
$openssl_bin crl2pkcs7 -in $crl_file -certfile $ca_cert -out $crl_p7
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- server-admin operations (check csr, verify cert, certhash) ---
section_message "server-admin operations (check csr, verify cert, certhash)"
start_message "asn1parse ... parse server csr#1"
$openssl_bin asn1parse -in $sv_rsa_csr -i -dlimit 100 -length 1000 \
-strparse 01 > $sv_rsa_csr.asn1parse.out
check_exit_status $?
start_message "verify ... server cert#1"
$openssl_bin verify -verbose -CAfile $ca_cert -CRLfile $crl_file \
-crl_check -issuer_checks -purpose sslserver $sv_rsa_cert
check_exit_status $?
start_message "x509 ... get detail info about server cert#1"
$openssl_bin x509 -in $sv_rsa_cert -text -C -dates -startdate -enddate \
-fingerprint -issuer -issuer_hash -issuer_hash_old \
-subject -hash -subject_hash -subject_hash_old -ocsp_uri \
-ocspid -modulus -pubkey -serial -email -noout -trustout \
-alias -clrtrust -clrreject -next_serial -checkend 3600 \
-nameopt multiline -certopt compatible > $sv_rsa_cert.x509.out
check_exit_status $?
if [ $mingw = 0 ] ; then
start_message "certhash"
$openssl_bin certhash -v $server_dir \
> $server_dir/certhash.log 2>&1
check_exit_status $?
fi
# self signed
start_message "x509 ... generate self signed server cert"
server_self_cert=$server_dir/server_self_cert.pem
$openssl_bin x509 -in $sv_rsa_cert -signkey $sv_rsa_key -keyform pem \
-sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:8 \
-passin pass:$sv_rsa_pass -out $server_self_cert -days 1
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- Netscape SPKAC operations ---
section_message "Netscape SPKAC operations"
# server-admin generates SPKAC
start_message "spkac"
spkacfile=$server_dir/spkac.file
$openssl_bin spkac -key $genpkey_rsa -challenge hello -out $spkacfile
check_exit_status $?
$openssl_bin spkac -in $spkacfile -verify -out $spkacfile.out
check_exit_status $?
spkacreq=$server_dir/spkac.req
cat << __EOF__ > $spkacreq
countryName = JP
stateOrProvinceName = Tokyo
organizationName = TEST_DUMMY_COMPANY
commonName = spkac.test_dummy.com
__EOF__
cat $spkacfile >> $spkacreq
# CA signs SPKAC
start_message "ca ... CA signs SPKAC csr"
spkaccert=$server_dir/spkac.cert
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-spkac $spkacreq -out $spkaccert > $spkaccert.log 2>&1
check_exit_status $?
start_message "x509 ... convert DER format SPKAC cert to PEM"
spkacpem=$server_dir/spkac.pem
$openssl_bin x509 -in $spkaccert -inform DER -out $spkacpem -outform PEM
check_exit_status $?
# server-admin cert verify
start_message "nseq"
$openssl_bin nseq -in $spkacpem -toseq -out $spkacpem.nseq
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- user1 operations (generate user1 key and csr) ---
section_message "user1 operations (generate user1 key and csr)"
# trust
start_message "x509 ... trust testCA cert"
user1_trust=$user1_dir/user1_trust_ca.pem
$openssl_bin x509 -in $ca_cert -addtrust clientAuth \
-setalias "trusted testCA" -purpose -out $user1_trust \
> $user1_trust.log 2>&1
check_exit_status $?
start_message "req ... generate private key and csr for user1"
cl_rsa_key=$user1_dir/cl_rsa_key.pem
cl_rsa_csr=$user1_dir/cl_rsa_csr.pem
cl_rsa_pass=test-user1-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=user1.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=user1.test_dummy.com\'
fi
$openssl_bin req -new -keyout $cl_rsa_key -out $cl_rsa_csr \
-passout pass:$cl_rsa_pass -subj $subj > $cl_rsa_csr.log 2>&1
check_exit_status $?
start_message "req ... generate private key and csr for user2"
cl_ecdsa_key=$user1_dir/cl_ecdsa_key.pem
cl_ecdsa_csr=$user1_dir/cl_ecdsa_csr.pem
cl_ecdsa_pass=test-user1-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=user2.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=user2.test_dummy.com\'
fi
$openssl_bin ecparam -name prime256v1 -genkey -out $cl_ecdsa_key
check_exit_status $?
$openssl_bin req -new -subj $subj -sha256 \
-key $cl_ecdsa_key -keyform pem -passin pass:$cl_ecdsa_pass \
-out $cl_ecdsa_csr -outform pem
check_exit_status $?
start_message "req ... generate private key and csr for user3"
cl_gost_key=$user1_dir/cl_gost_key.pem
cl_gost_csr=$user1_dir/cl_gost_csr.pem
cl_gost_pass=test-user1-pass
if [ $mingw = 0 ] ; then
subj='/C=JP/ST=Tokyo/O=TEST_DUMMY_COMPANY/CN=user3.test_dummy.com/'
else
subj='//C=JP\ST=Tokyo\O=TEST_DUMMY_COMPANY\CN=user3.test_dummy.com\'
fi
$openssl_bin genpkey -algorithm GOST2001 -pkeyopt paramset:A \
-pkeyopt dgst:streebog512 -out $cl_gost_key
check_exit_status $?
$openssl_bin req -new -subj $subj -streebog512 \
-key $cl_gost_key -keyform pem -passin pass:$cl_gost_pass \
-out $cl_gost_csr -outform pem
check_exit_status $?
#---------#---------#---------#---------#---------#---------#---------
# --- CA operations (issue cert for user1) ---
section_message "CA operations (issue cert for user1)"
start_message "ca ... issue cert for user1"
cl_rsa_cert=$user1_dir/cl_rsa_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-in $cl_rsa_csr -out $cl_rsa_cert > $cl_rsa_cert.log 2>&1
check_exit_status $?
start_message "ca ... issue cert for user2"
cl_ecdsa_cert=$user1_dir/cl_ecdsa_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-in $cl_ecdsa_csr -out $cl_ecdsa_cert > $cl_ecdsa_cert.log 2>&1
check_exit_status $?
start_message "ca ... issue cert for user3"
cl_gost_cert=$user1_dir/cl_gost_cert.pem
$openssl_bin ca -batch -cert $ca_cert -keyfile $ca_key -key $ca_pass \
-in $cl_gost_csr -out $cl_gost_cert > $cl_gost_cert.log 2>&1
check_exit_status $?
}
function test_tsa {
# --- TSA operations ---
section_message "TSA operations"
tsa_dat=$user1_dir/tsa.dat
cat << __EOF__ > $tsa_dat
Hello Bob,
Sincerely yours
Alice
__EOF__
# Query
start_message "ts ... create time stamp request"
tsa_tsq=$user1_dir/tsa.tsq
$openssl_bin ts -query -sha1 -data $tsa_dat -no_nonce -out $tsa_tsq
check_exit_status $?
start_message "ts ... print time stamp request"
$openssl_bin ts -query -in $tsa_tsq -text -out $tsa_tsq.log
check_exit_status $?
# Reply
start_message "ts ... create time stamp response for a request"
tsa_tsr=$user1_dir/tsa.tsr
$openssl_bin ts -reply -queryfile $tsa_tsq -inkey $tsa_key \
-passin pass:$tsa_pass -signer $tsa_cert -chain $ca_cert \
-config $ssldir/openssl.cnf -section tsa_config1 -cert \
-policy 1.3.6.1.4.1.4146.2.3 -out $tsa_tsr
check_exit_status $?
# Verify
start_message "ts ... verify time stamp response"
$openssl_bin ts -verify -queryfile $tsa_tsq -in $tsa_tsr \
-CAfile $ca_cert -untrusted $tsa_cert
check_exit_status $?
}
function test_cms {
# --- CMS operations ---
section_message "CMS operations"
cms_txt=$user1_dir/cms.txt
cms_sig=$user1_dir/cms.sig
cms_enc=$user1_dir/cms.enc
cms_dec=$user1_dir/cms.dec
cms_sgr=$user1_dir/cms.sgr
cms_ver=$user1_dir/cms.ver
cms_out=$user1_dir/cms.out
cms_dct=$user1_dir/cms.dct
cms_dot=$user1_dir/cms.dot
cms_dgc=$user1_dir/cms.dgc
cms_dgv=$user1_dir/cms.dgv
cms_ede=$user1_dir/cms.ede
cms_edd=$user1_dir/cms.edd
cms_srp=$user1_dir/cms.srp
cms_pwe=$user1_dir/cms.pwe
cms_pwd=$user1_dir/cms.pwd
cat << __EOF__ > $cms_txt
Hello Bob,
Sincerely yours
Alice
__EOF__
# sign
start_message "cms ... sign to message"
$openssl_bin cms -sign -in $cms_txt -text \
-out $cms_sig -outform smime \
-signer $cl_rsa_cert -inkey $cl_rsa_key -keyform pem \
-keyopt rsa_padding_mode:pss \
-passin pass:$cl_rsa_pass -md sha256 \
-from user1@test_dummy.com -to server@test_dummy.com \
-subject "test openssl cms" \
-receipt_request_from server@test_dummy.com \
-receipt_request_to user1@test_dummy.com
check_exit_status $?
# encrypt
start_message "cms ... encrypt message"
$openssl_bin cms -encrypt -aes256 -binary -in $cms_sig -inform smime \
-recip $sv_rsa_cert -keyopt rsa_padding_mode:oaep \
-out $cms_enc
check_exit_status $?
# decrypt
start_message "cms ... decrypt message"
$openssl_bin cms -decrypt -in $cms_enc -out $cms_dec \
-recip $sv_rsa_cert -inkey $sv_rsa_key -passin pass:$sv_rsa_pass
check_exit_status $?
# verify
start_message "cms ... verify message"
$openssl_bin cms -verify -in $cms_dec \
-CAfile $ca_cert -certfile $cl_rsa_cert -nointern \
-check_ss_sig -issuer_checks -policy_check -x509_strict \
-signer $cms_sgr -text -out $cms_ver -receipt_request_print \
> $cms_ver.log 2>&1
check_exit_status $?
diff -b $cms_ver $cms_txt
check_exit_status $?
# cmsout
start_message "cms ... cmsout"
$openssl_bin cms -cmsout -in $cms_enc -print -out $cms_out
check_exit_status $?
# data_create
start_message "cms ... data_create"
$openssl_bin cms -data_create -in $cms_enc -out $cms_dct
check_exit_status $?
# data_out
start_message "cms ... data_out"
$openssl_bin cms -data_out -in $cms_dct -out $cms_dot
check_exit_status $?
# digest_create
start_message "cms ... digest_create"
$openssl_bin cms -digest_create -in $cms_txt -md sha256 -out $cms_dgc
check_exit_status $?
# digest_verify
start_message "cms ... digest_verify"
$openssl_bin cms -digest_verify -in $cms_dgc -md sha256 -out $cms_dgv
check_exit_status $?
diff -b $cms_dgv $cms_txt
check_exit_status $?
# compress
# uncompress
# EncryptedData_encrypt
start_message "cms ... EncryptedData_encrypt"
$openssl_bin cms -EncryptedData_encrypt -in $cms_sig -out $cms_ede \
-aes128 -secretkey 00112233445566778899aabbccddeeff
check_exit_status $?
# EncryptedData_decrypt
start_message "cms ... EncryptedData_decrypt"
$openssl_bin cms -EncryptedData_decrypt -in $cms_ede -out $cms_edd \
-aes128 -secretkey 00112233445566778899aabbccddeeff
check_exit_status $?
diff -b $cms_edd $cms_sig
check_exit_status $?
# sign_receipt
start_message "cms ... sign to receipt"
$openssl_bin cms -sign_receipt -in $cms_sig -out $cms_srp \
-signer $sv_rsa_cert -inkey $sv_rsa_key \
-passin pass:$sv_rsa_pass -md sha256
check_exit_status $?
# verify_receipt
start_message "cms ... verify receipt"
$openssl_bin cms -verify_receipt $cms_srp -rctform smime -in $cms_sig \
-CAfile $ca_cert -certfile $sv_rsa_cert
check_exit_status $?
# encrypt with pwri
start_message "cms ... encrypt with pwri"
$openssl_bin cms -encrypt -camellia256 -in $cms_txt -out $cms_pwe \
-pwri_password abcdefg
check_exit_status $?
# decrypt with pwri
start_message "cms ... decrypt with pwri"
$openssl_bin cms -decrypt -camellia256 -in $cms_pwe -out $cms_pwd \
-pwri_password abcdefg
check_exit_status $?
diff -b $cms_pwd $cms_txt
check_exit_status $?
}
function test_smime {
# --- S/MIME operations ---
section_message "S/MIME operations"
smime_txt=$user1_dir/smime.txt
smime_enc=$user1_dir/smime.enc
smime_sig=$user1_dir/smime.sig
smime_p7o=$user1_dir/smime.p7o
smime_sgr=$user1_dir/smime.sgr
smime_ver=$user1_dir/smime.ver
smime_dec=$user1_dir/smime.dec
cat << __EOF__ > $smime_txt
Hello Bob,
Sincerely yours
Alice
__EOF__
# encrypt
start_message "smime ... encrypt message"
$openssl_bin smime -encrypt -aes256 -binary -in $smime_txt \
-out $smime_enc $sv_rsa_cert
check_exit_status $?
# sign
start_message "smime ... sign to message"
$openssl_bin smime -sign -in $smime_enc -text -inform smime \
-out $smime_sig -outform smime \
-signer $cl_rsa_cert -inkey $cl_rsa_key -keyform pem \
-passin pass:$cl_rsa_pass -md sha256 \
-from user1@test_dummy.com -to server@test_dummy.com \
-subject "test openssl smime"
check_exit_status $?
# pk7out
start_message "smime ... pk7out from message"
$openssl_bin smime -pk7out -in $smime_sig -out $smime_p7o
check_exit_status $?
# verify
start_message "smime ... verify message"
$openssl_bin smime -verify -in $smime_sig \
-CAfile $ca_cert -certfile $cl_rsa_cert -nointern \
-check_ss_sig -issuer_checks -policy_check -x509_strict \
-signer $smime_sgr -text -out $smime_ver
check_exit_status $?
# decrypt
start_message "smime ... decrypt message"
$openssl_bin smime -decrypt -in $smime_ver -out $smime_dec \
-recip $sv_rsa_cert -inkey $sv_rsa_key -passin pass:$sv_rsa_pass
check_exit_status $?
diff $smime_dec $smime_txt
check_exit_status $?
}
function test_ocsp {
# --- OCSP operations ---
section_message "OCSP operations"
# get key without pass
cl_rsa_key_nopass=$user1_dir/cl_rsa_key_nopass.pem
$openssl_bin pkey -in $cl_rsa_key -passin pass:$cl_rsa_pass \
-out $cl_rsa_key_nopass
check_exit_status $?
# request
start_message "ocsp ... create OCSP request"
ocsp_req=$user1_dir/ocsp_req.der
$openssl_bin ocsp -issuer $ca_cert -cert $sv_rsa_cert \
-cert $revoke_cert -serial 1 -nonce -no_certs -CAfile $ca_cert \
-signer $cl_rsa_cert -signkey $cl_rsa_key_nopass \
-sign_other $cl_rsa_cert -sha256 \
-reqout $ocsp_req -req_text -out $ocsp_req.out
check_exit_status $?
# response
start_message "ocsp ... create OCPS response for a request"
ocsp_res=$user1_dir/ocsp_res.der
$openssl_bin ocsp -index $ca_dir/index.txt -CA $ca_cert \
-CAfile $ca_cert -rsigner $ocsp_cert -rkey $ocsp_key \
-reqin $ocsp_req -rother $ocsp_cert -resp_no_certs -noverify \
-nmin 60 -validity_period 300 -status_age 300 \
-respout $ocsp_res -resp_text -out $ocsp_res.out
check_exit_status $?
# ocsp server
start_message "ocsp ... start OCSP server in background"
ocsp_port=8888
ocsp_svr_log=$user1_dir/ocsp_svr.log
$openssl_bin ocsp -index $ca_dir/index.txt -CA $ca_cert \
-CAfile $ca_cert -rsigner $ocsp_cert -rkey $ocsp_key \
-host localhost -port $ocsp_port -path / -ndays 1 -nrequest 1 \
-resp_key_id -text -out $ocsp_svr_log &
check_exit_status $?
ocsp_svr_pid=$!
echo "ocsp server pid = [ $ocsp_svr_pid ]"
sleep 1
# send query to ocsp server
start_message "ocsp ... send OCSP request to server"
ocsp_qry=$user1_dir/ocsp_qry.der
$openssl_bin ocsp -issuer $ca_cert -cert $sv_rsa_cert \
-cert $revoke_cert -CAfile $ca_cert -no_nonce \
-url http://localhost:$ocsp_port -timeout 10 -text \
-header Host localhost \
-respout $ocsp_qry -out $ocsp_qry.out
check_exit_status $?
# verify response from server
start_message "ocsp ... verify OCSP response from server"
$openssl_bin ocsp -respin $ocsp_qry -CAfile $ca_cert \
-ignore_err -no_signature_verify -no_cert_verify -no_chain \
-no_cert_checks -no_explicit -trust_other -no_intern \
-verify_other $ocsp_cert -VAfile $ocsp_cert
check_exit_status $?
}
function test_pkcs {
# --- PKCS operations ---
section_message "PKCS operations"
pkcs_pass=test-pkcs-pass
start_message "pkcs7 ... output certs in crl(pkcs7)"
$openssl_bin pkcs7 -in $crl_p7 -print_certs -text -out $crl_p7.out
check_exit_status $?
start_message "pkcs8 ... convert key to pkcs8"
$openssl_bin pkcs8 -in $cl_rsa_key -topk8 -out $cl_rsa_key.p8 \
-passin pass:$cl_rsa_pass -passout pass:$cl_rsa_pass \
-v1 pbeWithSHA1AndDES-CBC -v2 des3
check_exit_status $?
start_message "pkcs8 ... convert pkcs8 to key in DER format"
$openssl_bin pkcs8 -in $cl_rsa_key.p8 -passin pass:$cl_rsa_pass \
-outform DER -out $cl_rsa_key.p8.der
check_exit_status $?
start_message "pkcs12 ... create"
$openssl_bin pkcs12 -export -in $sv_rsa_cert -inkey $sv_rsa_key \
-passin pass:$sv_rsa_pass -certfile $ca_cert -CAfile $ca_cert \
-caname "caname_server_p12" \
-certpbe AES-256-CBC -keypbe AES-256-CBC -chain \
-name "name_server_p12" -des3 -maciter -macalg sha256 \
-CSP "csp_server_p12" -LMK -keyex \
-passout pass:$pkcs_pass -out $sv_rsa_cert.p12
check_exit_status $?
start_message "pkcs12 ... verify"
$openssl_bin pkcs12 -in $sv_rsa_cert.p12 -passin pass:$pkcs_pass -info \
-noout > $sv_rsa_cert.p12.log 2>&1
check_exit_status $?
start_message "pkcs12 ... private key to PEM without encryption"
$openssl_bin pkcs12 -in $sv_rsa_cert.p12 -password pass:$pkcs_pass \
-nocerts -nomacver -nodes -out $sv_rsa_cert.p12.pem
check_exit_status $?
}
function test_sc_by_protocol_version {
sc=$1
ver=$2
msg=$3
cid=$4
if [ $gost_tests = 1 ] && [ $ver = "tls1_3" -o $sc != 00 ] ; then
return
fi
groups_and_cipher=""
if [ $ver = "tls1_3" ] ; then
# Expect HelloRetryRequest
groups_and_cipher="-groups P-521:P-384 -cipher ALL"
fi
s_client_out=$user1_dir/s_client_${sc}_${ver}.out
start_message "s_client ... connect to TLS/SSL test server by $ver"
sleep $test_pause_sec
$c_bin s_client -connect $host:$port -CAfile $ca_cert \
-$ver $groups_and_cipher \
-msg -tlsextdebug < /dev/null > $s_client_out 2>&1
check_exit_status $?
if [ $ver = "tls1_3" ] ; then
grep 'Server Temp Key: ECDH, P-384, 384 bits' $s_client_out \
> /dev/null
check_exit_status $?
fi
# OpenSSL1.1.1 with TLSv1.3 does not call SSL_SESSION_print() until
# NewSessionTicket arrival
if ! [ $cid = "1" -a $ver = "tls1_3" ] ; then
grep "$msg" $s_client_out > /dev/null
check_exit_status $?
fi
grep 'Verify return code: 0 (ok)' $s_client_out > /dev/null
check_exit_status $?
}
function test_sc_all_cipher {
sc=$1
ver=$2
if [ $gost_tests = 1 ] && [ $ver = "tls1_3" -o $sc != 00 ] ; then
return
fi
copt=cipher
ciphers=$user1_dir/ciphers_${sc}_${ver}
if [ $ver = "tls1_3" ] ; then
if [ $c_id = "0" ] ; then
echo "AEAD-AES256-GCM-SHA384" > $ciphers
echo "AEAD-CHACHA20-POLY1305-SHA256" >> $ciphers
echo "AEAD-AES128-GCM-SHA256" >> $ciphers
else
echo "TLS_AES_256_GCM_SHA384" > $ciphers
echo "TLS_CHACHA20_POLY1305_SHA256" >> $ciphers
echo "TLS_AES_128_GCM_SHA256" >> $ciphers
copt=ciphersuites
fi
else
s_ciph=$server_dir/s_ciph_${sc}_${ver}
cipher_string=""
if [ $s_id = "0" ] ; then
if [ $ecdsa_tests = 1 ] ; then
cipher_string="ECDSA+TLSv1.2:!TLSv1.3"
elif [ $gost_tests = 1 ] ; then
cipher_string="kGOST:!NULL:!TLSv1.3"
else
cipher_string="ALL:!ECDSA:!kGOST:!TLSv1.3"
fi
fi
$s_bin ciphers -v $cipher_string | awk '{print $1}' > $s_ciph
c_ciph=$user1_dir/c_ciph_${sc}_${ver}
cipher_string=""
if [ $c_id = "0" ] ; then
if [ $ecdsa_tests = 1 ] ; then
cipher_string="ECDSA+TLSv1.2:!TLSv1.3"
elif [ $gost_tests = 1 ] ; then
cipher_string="kGOST:!NULL:!TLSv1.3"
else
cipher_string="ALL:!ECDSA:!kGOST:!TLSv1.3"
fi
fi
$c_bin ciphers -v $cipher_string | awk '{print $1}' > $c_ciph
grep -x -f $s_ciph $c_ciph | sort -R > $ciphers
fi
cnum=0
for c in `cat $ciphers` ; do
cnum=`expr $cnum + 1`
cnstr=`printf %03d $cnum`
s_client_out=$user1_dir/s_client_${sc}_${ver}_tls_${cnstr}_${c}.out
start_message "s_client ... connect to TLS/SSL test server with [ $cnstr ] $ver $c"
sleep $test_pause_sec
$c_bin s_client -connect $host:$port -CAfile $ca_cert \
-$ver -$copt $c \
-msg -tlsextdebug < /dev/null > $s_client_out 2>&1
check_exit_status $?
grep "Cipher is $c" $s_client_out > /dev/null
check_exit_status $?
grep 'Verify return code: 0 (ok)' $s_client_out > /dev/null
check_exit_status $?
done
}
function test_sc_session_reuse {
sc=$1
ver=$2
if [ $gost_tests = 1 ] && [ $ver = "tls1_3" -o $sc != 00 ] ; then
return
fi
sess_dat=$user1_dir/s_client_${sc}_${ver}_sess.dat
# Get session ticket to reuse
s_client_out=$user1_dir/s_client_${sc}_${ver}_tls_reuse_1.out
start_message "s_client ... connect to TLS/SSL test server to get session id $ver"
sleep $test_pause_sec
$c_bin s_client -connect $host:$port -CAfile $ca_cert \
-$ver -alpn "spdy/3,http/1.1" -sess_out $sess_dat \
-msg -tlsextdebug < /dev/null > $s_client_out 2>&1
check_exit_status $?
grep '^New, TLS.*$' $s_client_out > /dev/null
check_exit_status $?
grep 'Verify return code: 0 (ok)' $s_client_out > /dev/null
check_exit_status $?
# Reuse session ticket
s_client_out=$user1_dir/s_client_${sc}_${ver}_tls_reuse_2.out
start_message "s_client ... connect to TLS/SSL test server reusing session id $ver"
sleep $test_pause_sec
$c_bin s_client -connect $host:$port -CAfile $ca_cert \
-$ver -sess_in $sess_dat \
-msg -tlsextdebug < /dev/null > $s_client_out 2>&1
check_exit_status $?
grep '^Reused, TLS.*$' $s_client_out > /dev/null
check_exit_status $?
grep 'Verify return code: 0 (ok)' $s_client_out > /dev/null
check_exit_status $?
# sess_id
start_message "sess_id"
$c_bin sess_id -in $sess_dat -text -out $sess_dat.out
check_exit_status $?
}
function test_sc_verify {
sc=$1
ver=$2
if [ $gost_tests = 1 ] && [ $ver = "tls1_3" -o $sc != 00 ] ; then
return
fi
# invalid verification pattern
s_client_out=$user1_dir/s_client_${sc}_${ver}_tls_invalid.out
start_message "s_client ... connect to tls/ssl test server but verify error $ver"
sleep $test_pause_sec
$c_bin s_client -connect $host:$port -CAfile $ca_cert \
-$ver -showcerts -crl_check -issuer_checks -policy_check \
-msg -tlsextdebug < /dev/null > $s_client_out 2>&1
check_exit_status $?
grep 'verify return code: 0 (ok)' $s_client_out > /dev/null
if [ $? -eq 0 ] ; then
check_exit_status 1
else
check_exit_status 0
fi
# client certificate pattern
s_client_out=$user1_dir/s_client_${sc}_${ver}_tls_client_cert.out
start_message "s_client ... connect to tls/ssl test server with client certificate $ver"
if [ $ecdsa_tests = 1 ] ; then
echo "Using ECDSA client certificate"
crt=$cl_ecdsa_cert
key=$cl_ecdsa_key
pwd=$cl_ecdsa_pass
elif [ $gost_tests = 1 ] ; then
echo "Using GOST client certificate"
crt=$cl_gost_cert
key=$cl_gost_key
pwd=$cl_gost_pass
else
echo "Using RSA client certificate"
crt=$cl_rsa_cert
key=$cl_rsa_key
pwd=$cl_rsa_pass
fi
sleep $test_pause_sec
$c_bin s_client -connect $host:$port -CAfile $ca_cert \
-$ver -cert $crt -key $key -pass pass:$pwd \
-msg -tlsextdebug < /dev/null > $s_client_out 2>&1
check_exit_status $?
grep 'Verify return code: 0 (ok)' $s_client_out > /dev/null
check_exit_status $?
}
function test_server_client {
# --- client/server operations (TLS) ---
section_message "client/server operations (TLS)"
s_id="$1"
c_id="$2"
sc="$1$2"
test_pause_sec=0.2
if [ $s_id = "0" ] ; then
s_bin=$openssl_bin
else
s_bin=$other_openssl_bin
fi
if [ $c_id = "0" ] ; then
c_bin=$openssl_bin
else
c_bin=$other_openssl_bin
fi
echo "s_server is [`$s_bin version`]"
echo "s_client is [`$c_bin version`]"
host="localhost"
port=4433
s_server_out=$server_dir/s_server_${sc}_tls.out
if [ $ecdsa_tests = 1 ] ; then
echo "Using ECDSA certificate"
crt=$sv_ecdsa_cert
key=$sv_ecdsa_key
pwd=$sv_ecdsa_pass
elif [ $gost_tests = 1 ] ; then
echo "Using GOST certificate"
crt=$sv_gost_cert
key=$sv_gost_key
pwd=$sv_gost_pass
else
echo "Using RSA certificate"
crt=$sv_rsa_cert
key=$sv_rsa_key
pwd=$sv_rsa_pass
fi
$s_bin version | grep 'OpenSSL 1.1.1' > /dev/null
if [ $? -eq 0 ] ; then
extra_opts="-4"
else
extra_opts=""
fi
start_message "s_server ... start TLS/SSL test server"
$s_bin s_server -accept $port -CAfile $ca_cert \
-cert $crt -key $key -pass pass:$pwd \
-context "appstest.sh" -id_prefix "APPSTEST.SH" -crl_check \
-alpn "http/1.1,spdy/3" -www -cipher ALL $extra_opts \
-msg -tlsextdebug -verify 3 -groups X25519:P-384:P-256 \
> $s_server_out 2>&1 &
check_exit_status $?
s_server_pid=$!
echo "s_server pid = [ $s_server_pid ]"
sleep 1
# test by protocol version
test_sc_by_protocol_version $sc tls1 'Protocol : TLSv1$' $c_id
test_sc_by_protocol_version $sc tls1_1 'Protocol : TLSv1\.1$' $c_id
test_sc_by_protocol_version $sc tls1_2 'Protocol : TLSv1\.2$' $c_id
test_sc_by_protocol_version $sc tls1_3 'Protocol : TLSv1\.3$' $c_id
# all available ciphers with random order
test_sc_all_cipher $sc tls1_2
test_sc_all_cipher $sc tls1_3
# session resumption
test_sc_session_reuse $sc tls1_2
# invalid verification pattern
test_sc_verify $sc tls1_2
test_sc_verify $sc tls1_3
# s_time
if [ $gost_tests != 1 ] ; then
start_message "s_time ... connect to TLS/SSL test server"
$c_bin s_time -connect $host:$port -CApath $ca_dir -time 1 \
> $server_dir/s_time_${sc}.log
check_exit_status $?
fi
stop_s_server
}
function test_speed {
# === PERFORMANCE ===
section_message "PERFORMANCE"
if [ $no_long_tests = 0 ] ; then
start_message "speed"
$openssl_bin speed sha512 rsa2048 -multi 2 -elapsed
check_exit_status $?
else
start_message "SKIPPING speed (quick mode)"
fi
}
function test_version {
# --- VERSION INFORMATION ---
section_message "VERSION INFORMATION"
start_message "version"
$openssl_bin version -a
check_exit_status $?
}
#---------#---------#---------#---------#---------#---------#---------#---------
openssl_bin=${OPENSSL:-/usr/bin/openssl}
other_openssl_bin=${OTHER_OPENSSL:-/usr/local/bin/eopenssl11}
ecdsa_tests=0
gost_tests=0
interop_tests=0
no_long_tests=0
while [ "$1" != "" ]; do
case $1 in
-e | --ecdsa) shift
ecdsa_tests=1
gost_tests=0
;;
-g | --gost) shift
gost_tests=1
ecdsa_tests=0
;;
-i | --interop) shift
interop_tests=1
;;
-q | --quick ) shift
no_long_tests=1
;;
* ) usage
exit 1
esac
done
if [ ! -x $openssl_bin ] ; then
echo ":-< \$OPENSSL [$openssl_bin] is not executable."
exit 1
fi
if [ $interop_tests = 1 -a ! -x $other_openssl_bin ] ; then
echo ":-< \$OTHER_OPENSSL [$other_openssl_bin] is not executable."
exit 1
fi
#
# create ssldir, and all files generated by this script goes under this dir.
#
ssldir="appstest_dir"
if [ -d $ssldir ] ; then
echo "directory [ $ssldir ] exists, this script deletes this directory ..."
/bin/rm -rf $ssldir
fi
mkdir -p $ssldir
ca_dir=$ssldir/testCA
tsa_dir=$ssldir/testTSA
ocsp_dir=$ssldir/testOCSP
server_dir=$ssldir/server
user1_dir=$ssldir/user1
mkdir -p $user1_dir
key_dir=$ssldir/key
mkdir -p $key_dir
export OPENSSL_CONF=$ssldir/openssl.cnf
touch $OPENSSL_CONF
uname_s=`uname -s | grep 'MINGW'`
if [ "$uname_s" = "" ] ; then
mingw=0
else
mingw=1
fi
#
# process tests
#
test_usage_lists_others
test_md
test_encoding_cipher
test_key
test_pki
test_tsa
test_cms
test_smime
test_ocsp
test_pkcs
test_server_client 0 0
if [ $interop_tests = 1 ] ; then
test_server_client 0 1
test_server_client 1 0
fi
test_speed
test_version
section_message "END"
exit 0
|