File tree Expand file tree Collapse file tree 9 files changed +18
-212
lines changed Expand file tree Collapse file tree 9 files changed +18
-212
lines changed Original file line number Diff line number Diff line change 39
39
done while fixing the error code for the key-too-small case.
40
40
[Annie Yousar <
[email protected] >]
41
41
42
+ *) CA.sh has been removmed; use CA.pl instead.
43
+ [Rich Salz]
44
+
42
45
*) Removed old DES API.
43
46
[Rich Salz]
44
47
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ LIBSSL=-L.. -lssl
31
31
32
32
PROGRAM = openssl
33
33
34
- SCRIPTS =CA.sh CA. pl tsget
34
+ SCRIPTS =CA.pl tsget
35
35
36
36
EXE = $(PROGRAM )$(EXE_EXT )
37
37
Original file line number Diff line number Diff line change @@ -641,8 +641,8 @@ the database has to be kept in memory.
641
641
642
642
The B<ca> command really needs rewriting or the required functionality
643
643
exposed at either a command or interface level so a more friendly utility
644
- (perl script or GUI) can handle things properly. The scripts B<CA.sh> and
645
- B<CA.pl> help a little but not very much.
644
+ (perl script or GUI) can handle things properly. The script
645
+ B<CA.pl> helps a little but not very much.
646
646
647
647
Any fields in a request that are not present in a policy are silently
648
648
deleted. This does not happen if the B<-preserveDN> option is used. To
Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ test_ca: ../apps/openssl$(EXE_EXT) testca CAss.cnf Uss.cnf
352
352
echo SKIP $@ -- requires RSA; \
353
353
else \
354
354
echo $(START ) $@ ; \
355
- sh ./testca; \
355
+ sh ./testca $( PERL ) ; \
356
356
fi
357
357
358
358
test_tsa : ../apps/openssl$(EXE_EXT ) testtsa CAtsa.cnf ../util/shlib_wrap.sh
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
- SH=" /bin/sh"
3
+ PERL=" $1 "
4
+
4
5
if test " $OSTYPE " = msdosdjgpp; then
5
6
PATH=" ../apps\;$PATH "
6
7
else
7
8
PATH=" ../apps:$PATH "
8
9
fi
9
- export SH PATH
10
+ export PATH
10
11
11
12
SSLEAY_CONFIG=" -config CAss.cnf"
12
13
export SSLEAY_CONFIG
@@ -15,7 +16,7 @@ OPENSSL="`pwd`/../util/opensslwrap.sh"
15
16
export OPENSSL
16
17
17
18
/bin/rm -fr demoCA
18
- OPENSSL_CONFIG=/dev/null $SH ../apps/CA.sh -newca << EOF
19
+ OPENSSL_CONFIG=/dev/null $PERL ../apps/CA.pl -newca << EOF
19
20
EOF
20
21
21
22
if [ $? != 0 ]; then
24
25
25
26
SSLEAY_CONFIG=" -config Uss.cnf"
26
27
export SSLEAY_CONFIG
27
- $SH ../apps/CA.sh -newreq
28
+ $PERL ../apps/CA.pl -newreq
28
29
if [ $? != 0 ]; then
29
30
exit 1;
30
31
fi
31
32
32
33
33
34
SSLEAY_CONFIG=" -config ../apps/openssl.cnf"
34
35
export SSLEAY_CONFIG
35
- $SH ../apps/CA.sh -sign << EOF
36
+ $PERL ../apps/CA.pl -sign << EOF
36
37
y
37
38
y
38
39
EOF
@@ -41,7 +42,7 @@ if [ $? != 0 ]; then
41
42
fi
42
43
43
44
44
- $SH ../apps/CA.sh -verify newcert.pem
45
+ $PERL ../apps/CA.pl -verify newcert.pem
45
46
if [ $? != 0 ]; then
46
47
exit 1;
47
48
fi
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export SH PATH
14
14
15
15
OPENSSL_CONF=" ../CAtsa.cnf"
16
16
export OPENSSL_CONF
17
- # Because that's what ../apps/CA.sh really looks at
17
+ # Because that's what ../apps/CA.pl really looks at
18
18
SSLEAY_CONFIG=" -config $OPENSSL_CONF "
19
19
export SSLEAY_CONFIG
20
20
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ $ exe_dir = "sys$disk:[-.''__arch'.exe.apps]"
13
13
$
14
14
$ openssl = "mcr ''f$parse(exe_dir+"openssl.exe")'"
15
15
$ OPENSSL_CONF = "[-]CAtsa.cnf"
16
- $ ! Because that's what ../apps/CA.sh really looks at
16
+ $ ! Because that's what ../apps/CA.pl really looks at
17
17
$ SSLEAY_CONFIG = "-config " + OPENSSL_CONF
18
18
$
19
19
$ error:
Original file line number Diff line number Diff line change @@ -417,13 +417,13 @@ sub get_tests
417
417
);
418
418
$copies .= copy_scripts(1, ' util' , @utils );
419
419
420
- my @apps = ( ' CA.sh ' ,
420
+ my @apps = ( ' CA.pl ' ,
421
421
' openssl.cnf' ,
422
422
' server2.pem' ,
423
423
);
424
424
$copies .= copy_scripts(1, ' apps' , @apps );
425
425
426
- $scripts = " test_scripts: \$ (TEST_D)/CA.sh \$ (TEST_D)/opensslwrap.sh \$ (TEST_D)/openssl.cnf \$ (TEST_D)/shlib_wrap.sh ocsp smime\n " ;
426
+ $scripts = " test_scripts: \$ (TEST_D)/CA.pl \$ (TEST_D)/opensslwrap.sh \$ (TEST_D)/openssl.cnf \$ (TEST_D)/shlib_wrap.sh ocsp smime\n " ;
427
427
$scripts .= " \n ocsp:\n\t cp -R test/ocsp-tests \$ (TEST_D)\n " ;
428
428
$scripts .= " \s mime:\n\t cp -R test/smime-certs \$ (TEST_D)\n " ;
429
429
You can’t perform that action at this time.
0 commit comments