NAME
Acme::NSS - Alien wrapper for NSS ( Network Security Services )
SYNOPSIS
use strict;
use warnings;
use Module::Build;
use Alien::NSS;
my $cflags = Alien::NSS->cflags;
my $ldflags = Alien::NSS->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 NSS ( Network Security Services )
DESCRIPTION
This library provides an alien wrapper for NSS, the cryptographic library that is ( among others ) used in Mozilla Firefox and Google Chrome.