SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL::XS is a Perl module that provides an implementation framework that all protocols should be able to share.
The XS framework makes calls into the existing libsasl.so resp. libsasl2 shared library to perform SASL client connection functionality, including loading existing shared library mechanisms.
SYNOPSIS
use Authen::SASL;
my $sasl = Authen::SASL->new(
mechanism => 'NAME',
callback => { NAME => VALUE, NAME => VALUE, ... },
);
my $conn = $sasl->client_new(< service >, < server >, < iplocalport >, < ipremoteport >);
my $conn = $sasl->server_new(< service >, < host >, < iplocalport >, < ipremoteport >);
Product's homepage
Requirements:
· Perl