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::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::NSS => 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.