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

  • 1cc89db
  • /
  • testssl
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:f115adb8e11394b453b23fea88461f3aaa6378b2
directory badge Iframe embedding
swh:1:dir:1cc89dbe69dfdccc79dd150a093cb642daeec7d6
testssl
#!/bin/sh

echo test sslv2
./ssltest -ssl2 || exit 1

echo test sslv2 with server authentication
./ssltest -ssl2 -server_auth -CApath ../certs || exit 1

echo test sslv2 with client authentication
./ssltest -ssl2 -client_auth -CApath ../certs || exit 1

echo test sslv2 with both client and server authentication
./ssltest -ssl2 -server_auth -client_auth -CApath ../certs || exit 1

echo test sslv3
./ssltest -ssl3 || exit 1

echo test sslv3 with server authentication
./ssltest -ssl3 -server_auth -CApath ../certs || exit 1

echo test sslv3 with client authentication
./ssltest -ssl3 -client_auth -CApath ../certs || exit 1

echo test sslv3 with both client and server authentication
./ssltest -ssl3 -server_auth -client_auth -CApath ../certs || exit 1

echo test sslv2/sslv3
./ssltest || exit 1

echo test sslv2/sslv3 with server authentication
./ssltest -server_auth -CApath ../certs || exit 1

echo test sslv2/sslv3 with client authentication
./ssltest -client_auth -CApath ../certs || exit 1

echo test sslv2/sslv3 with both client and server authentication
./ssltest -server_auth -client_auth -CApath ../certs || exit 1

exit 0

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

back to top