The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Alien::OpenSSL - Alien wrapper for OpenSSL

SYNOPSIS

  use strict;
  use warnings;

  use Module::Build;
  use Alien::OpenSSL;

  my $cflags = Alien::OpenSSL->cflags;
  my $ldflags = Alien::OpenSSL->libs;

  my $builder = Module::Build->new(
  	module_name => 'my_lib',
	extra_compiler_flags => $cflags,
	extra_linker_flags => $ldflags,
	configure_requires => {
		'Alien::OpenSSL => 0
		},
  );

  $builder->create_build_script;

ABSTRACT

Alien wrapper for OpenSSL

DESCRIPTION

This library provides an alien wrapper for OpenSSL.

SEE ALSO

OpenSSL(1), Crypt::OpenSSL::X509, Alien::Base