1998-12-21 10:52:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-04-08 16:28:15 +00:00
|
|
|
OPENSSL_CONF=/dev/null ; export OPENSSL_CONF
|
2005-02-01 23:48:37 +00:00
|
|
|
cmd='../util/shlib_wrap.sh ../apps/openssl x509'
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
if [ "$1"x != "x" ]; then
|
|
|
|
t=$1
|
|
|
|
else
|
|
|
|
t=testx509.pem
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo testing X509 conversions
|
2013-04-03 05:05:33 +00:00
|
|
|
cp $t x509-fff.p
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
echo "p -> d"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-fff.p -inform p -outform d >x509-f.d || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "p -> n"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-fff.p -inform p -outform n >x509-f.n || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "p -> p"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-fff.p -inform p -outform p >x509-f.p || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
echo "d -> d"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.d -inform d -outform d >x509-ff.d1 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "n -> d"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.n -inform n -outform d >x509-ff.d2 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "p -> d"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.p -inform p -outform d >x509-ff.d3 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
echo "d -> n"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.d -inform d -outform n >x509-ff.n1 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "n -> n"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.n -inform n -outform n >x509-ff.n2 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "p -> n"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.p -inform p -outform n >x509-ff.n3 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
echo "d -> p"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.d -inform d -outform p >x509-ff.p1 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "n -> p"
|
2015-04-10 14:06:17 +00:00
|
|
|
$cmd -in x509-f.n -inform n -outform p >x509-ff.p2 || exit 1
|
1998-12-21 10:52:47 +00:00
|
|
|
echo "p -> p"
|
2015-04-10 14:06:17 +00:00
|
|
|
$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
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2013-04-03 05:05:33 +00:00
|
|
|
/bin/rm -f x509-f.* x509-ff.* x509-fff.*
|
1998-12-21 10:52:47 +00:00
|
|
|
exit 0
|