Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 3c7376c
  • /
  • test
  • /
  • tpkcs7
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:d7029a03268b3f06ebcc813853888fd3796321bc
directory badge Iframe embedding
swh:1:dir:bfc57b47c88aa2c80b5d48826ce4c72f2e12a79f
tpkcs7
#!/bin/sh

cmd='../util/shlib_wrap.sh ../apps/openssl pkcs7'

if [ "$1"x != "x" ]; then
	t=$1
else
	t=testp7.pem
fi

echo testing pkcs7 conversions
cp $t p7-fff.p

echo "p -> d"
$cmd -in p7-fff.p -inform p -outform d >p7-f.d
if [ $? != 0 ]; then exit 1; fi
echo "p -> p"
$cmd -in p7-fff.p -inform p -outform p >p7-f.p
if [ $? != 0 ]; then exit 1; fi

echo "d -> d"
$cmd -in p7-f.d -inform d -outform d >p7-ff.d1
if [ $? != 0 ]; then exit 1; fi
echo "p -> d"
$cmd -in p7-f.p -inform p -outform d >p7-ff.d3
if [ $? != 0 ]; then exit 1; fi

echo "d -> p"
$cmd -in p7-f.d -inform d -outform p >p7-ff.p1
if [ $? != 0 ]; then exit 1; fi
echo "p -> p"
$cmd -in p7-f.p -inform p -outform p >p7-ff.p3
if [ $? != 0 ]; then exit 1; fi

cmp p7-fff.p p7-f.p
if [ $? != 0 ]; then exit 1; fi
cmp p7-fff.p p7-ff.p1
if [ $? != 0 ]; then exit 1; fi
cmp p7-fff.p p7-ff.p3
if [ $? != 0 ]; then exit 1; fi

cmp p7-f.p p7-ff.p1
if [ $? != 0 ]; then exit 1; fi
cmp p7-f.p p7-ff.p3
if [ $? != 0 ]; then exit 1; fi

/bin/rm -f p7-f.* p7-ff.* p7-fff.*
exit 0

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top