Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/thread-self/root/proc/self/root/usr/share/perl5/vendor_perl/Web/ID/Util/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/root/proc/self/root/usr/share/perl5/vendor_perl/Web/ID/Util/FindOpenSSL.pm
package Web::ID::Util::FindOpenSSL;

our $AUTHORITY = "cpan:TOBYINK";
our $VERSION   = "1.927";

use strict;
use File::ShareDir qw/dist_dir/;
use File::Spec;

my @possible = (
	'c:\\openssl\\bin\\openssl.exe',
	'/usr/bin/openssl',
	'/usr/local/bin/openssl',
);
push @possible, $ENV{OPENSSL_PATH} if exists $ENV{OPENSSL_PATH};
push @possible, File::Spec->catfile(
	dist_dir("Alien-OpenSSL"),
	"bin",
	"openssl",
) if eval { dist_dir("Alien-OpenSSL") };

my $openssl;
sub find_openssl
{
	return $openssl
		if defined $openssl && -f $openssl;
	
	for my $try (@possible)
	{
		return ($openssl = $try) if -f $try;
	}
	
	return;
}

1;

Hry