mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
7ea9f90d77
Almost two months ago, the warning about non-existing config file was supressed by setting the environment variable OPENSSL_CONF to /dev/null everywhere. Now that this warning is gone, that practice is no longer needed. Reviewed-by: Stephen Henson <steve@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
56 lines
1.4 KiB
Bash
56 lines
1.4 KiB
Bash
#!/bin/sh
|
|
|
|
cmd='../util/shlib_wrap.sh ../apps/openssl x509'
|
|
|
|
if [ "$1"x != "x" ]; then
|
|
t=$1
|
|
else
|
|
t=testx509.pem
|
|
fi
|
|
|
|
echo testing X509 conversions
|
|
cp $t x509-fff.p
|
|
|
|
echo "p -> d"
|
|
$cmd -in x509-fff.p -inform p -outform d >x509-f.d || exit 1
|
|
echo "p -> n"
|
|
$cmd -in x509-fff.p -inform p -outform n >x509-f.n || exit 1
|
|
echo "p -> p"
|
|
$cmd -in x509-fff.p -inform p -outform p >x509-f.p || exit 1
|
|
|
|
echo "d -> d"
|
|
$cmd -in x509-f.d -inform d -outform d >x509-ff.d1 || exit 1
|
|
echo "n -> d"
|
|
$cmd -in x509-f.n -inform n -outform d >x509-ff.d2 || exit 1
|
|
echo "p -> d"
|
|
$cmd -in x509-f.p -inform p -outform d >x509-ff.d3 || exit 1
|
|
|
|
echo "d -> n"
|
|
$cmd -in x509-f.d -inform d -outform n >x509-ff.n1 || exit 1
|
|
echo "n -> n"
|
|
$cmd -in x509-f.n -inform n -outform n >x509-ff.n2 || exit 1
|
|
echo "p -> n"
|
|
$cmd -in x509-f.p -inform p -outform n >x509-ff.n3 || exit 1
|
|
|
|
echo "d -> p"
|
|
$cmd -in x509-f.d -inform d -outform p >x509-ff.p1 || exit 1
|
|
echo "n -> p"
|
|
$cmd -in x509-f.n -inform n -outform p >x509-ff.p2 || exit 1
|
|
echo "p -> p"
|
|
$cmd -in x509-f.p -inform p -outform p >x509-ff.p3 || exit 1
|
|
|
|
cmp x509-fff.p x509-f.p || exit 1
|
|
cmp x509-fff.p x509-ff.p1 || exit 1
|
|
cmp x509-fff.p x509-ff.p2 || exit 1
|
|
cmp x509-fff.p x509-ff.p3 || exit 1
|
|
|
|
cmp x509-f.n x509-ff.n1 || exit 1
|
|
cmp x509-f.n x509-ff.n2 || exit 1
|
|
cmp x509-f.n x509-ff.n3 || exit 1
|
|
cmp x509-f.p x509-ff.p1 || exit 1
|
|
cmp x509-f.p x509-ff.p2 || exit 1
|
|
cmp x509-f.p x509-ff.p3 || exit 1
|
|
|
|
/bin/rm -f x509-f.* x509-ff.* x509-fff.*
|
|
exit 0
|