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

Revision bfe07df40c13ea2564bb4577620180e3f4849e23 authored by Matt Caswell on 03 December 2015, 14:44:31 UTC, committed by Matt Caswell on 03 December 2015, 14:44:31 UTC
Prepare for 1.0.2e release
Reviewed-by: Richard Levitte <levitte@openssl.org>
1 parent 33223e7
  • Files
  • Changes
  • 2e8faee
  • /
  • test
  • /
  • tx509
Raw File
Cook and download a directory from the Software Heritage Vault

You have requested the cooking of the directory with identifier None into a standard tar.gz archive.

Are you sure you want to continue ?

Download a directory from the Software Heritage Vault

You have requested the download of the directory with identifier None as a standard tar.gz archive.

Are you sure you want to continue ?

Cook and download a revision from the Software Heritage Vault

You have requested the cooking of the history heading to revision with identifier swh:1:rev:bfe07df40c13ea2564bb4577620180e3f4849e23 into a bare git archive.

Are you sure you want to continue ?

Download a revision from the Software Heritage Vault

You have requested the download of the history heading to revision with identifier swh:1:rev:bfe07df40c13ea2564bb4577620180e3f4849e23 as a bare git archive.

Are you sure you want to continue ?

Invalid Email !

The provided email is not well-formed.

Download link has expired

The requested archive is no longer available for download from the Software Heritage Vault.

Do you want to cook it again ?

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.

  • revision
  • content
revision badge
swh:1:rev:bfe07df40c13ea2564bb4577620180e3f4849e23
content badge Iframe embedding
swh:1:cnt:77f5cacfcac9714175814d39dece35a1068d3fb3
tx509
#!/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
if [ $? != 0 ]; then exit 1; fi
echo "p -> n"
$cmd -in x509-fff.p -inform p -outform n >x509-f.n
if [ $? != 0 ]; then exit 1; fi
echo "p -> p"
$cmd -in x509-fff.p -inform p -outform p >x509-f.p
if [ $? != 0 ]; then exit 1; fi

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

echo "d -> n"
$cmd -in x509-f.d -inform d -outform n >x509-ff.n1
if [ $? != 0 ]; then exit 1; fi
echo "n -> n"
$cmd -in x509-f.n -inform n -outform n >x509-ff.n2
if [ $? != 0 ]; then exit 1; fi
echo "p -> n"
$cmd -in x509-f.p -inform p -outform n >x509-ff.n3
if [ $? != 0 ]; then exit 1; fi

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

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

cmp x509-f.n x509-ff.n1
if [ $? != 0 ]; then exit 1; fi
cmp x509-f.n x509-ff.n2
if [ $? != 0 ]; then exit 1; fi
cmp x509-f.n x509-ff.n3
if [ $? != 0 ]; then exit 1; fi

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

echo "Parsing test certificates"

$cmd -in certs/pss1.pem -text -noout >/dev/null
if [ $? != 0 ]; then exit 1; fi

echo OK

/bin/rm -f x509-f.* x509-ff.* x509-fff.*
exit 0
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

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

back to top