Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pluginviewer(8) [debian man page]

PLUGINVIEWER(8)                                               System Manager's Manual                                              PLUGINVIEWER(8)

NAME
pluginviewer - list loadable SASL plugins and their properties SYNOPSIS
pluginviewer [-a] [-s] [-c] [-b min=N,max=N] [-e ssf=N,id=ID] [-m MECHS] [-x AUXPROP_MECH] [-f FLAGS] [-p PATH] DESCRIPTION
pluginviewer can be used by a server administrator to troubleshoot SASL installations. The utility can list loadable (properly configured) client and server side plugins, as well as auxprop plugins. OPTIONS
-a List auxprop plugins. -s List server authentication (SASL) plugins. -c List client authentication (SASL) plugins. -b min=N1,max=N2 List client authentication (SASL) plugins. Strength of the SASL security layer in bits. min=N1 specifies the minumum strength to use (1 => integrity protection). max=N2 specifies the maximum strength to use. Only SASL mechanisms which support security layer with strength M such that N1 <= M <= N2 will be shown. -e ssf=N,id=ID Assume that an external security layer (e.g. TLS) with N-bit strength is installed. The ID is the authentication identity used by the external security layer. -m MECHS Limit listed SASL plugins to the ones included in the MECHS (space separated) list. -x AUXPROP_MECHS Limit listed auxprop plugins to the one listed in the AUXPROP_MECHS (space separated) list. -f FLAGS Set security flags. FLAGS is a comma separated list of one or more of the following security flags: noplain (SASL mechanism doesn't send password in the clear during authentication), noactive (require protection from active attacks), nodict (require mechanisms which are secure against passive dictionary attacks), forwardsec (require forward secrecy), passcred (require mechanisms that can delegate client credentials), maximum (require all security flags). -p PATH Specifies a colon-separated search path for plugins. SEE ALSO
rfc2222 - Simple Authentication and Security Layer (SASL) CMU SASL Apr 10, 2006 PLUGINVIEWER(8)

Check Out this Related Man Page

Authen::SASL::Perl::DIGEST_MD5(3pm)			User Contributed Perl Documentation		       Authen::SASL::Perl::DIGEST_MD5(3pm)

NAME
Authen::SASL::Perl::DIGEST_MD5 - Digest MD5 Authentication class SYNOPSIS
use Authen::SASL qw(Perl); $sasl = Authen::SASL->new( mechanism => 'DIGEST-MD5', callback => { user => $user, pass => $pass, serv => $serv }, ); DESCRIPTION
This method implements the client and server parts of the DIGEST-MD5 SASL algorithm, as described in RFC 2831. CALLBACK The callbacks used are: client authname The authorization id to use after successful authentication user The username to be used in the response pass The password to be used to compute the response. serv The service name when authenticating to a replicated service realm The authentication realm when overriding the server-provided default. If not given the server-provided value is used. The callback will be passed the list of realms that the server provided in the initial response. server realm The default realm to provide to the client getsecret(username, realm, authzid) returns the password associated with "username" and "realm" PROPERTIES The properties used are: maxbuf The maximum buffer size for receiving cipher text minssf The minimum SSF value that should be provided by the SASL security layer. The default is 0 maxssf The maximum SSF value that should be provided by the SASL security layer. The default is 2**31 externalssf The SSF value provided by an underlying external security layer. The default is 0 ssf The actual SSF value provided by the SASL security layer after the SASL authentication phase has been completed. This value is read- only and set by the implementation after the SASL authentication phase has been completed. maxout The maximum plaintext buffer size for sending data to the peer. This value is set by the implementation after the SASL authentication phase has been completed and a SASL security layer is in effect. SEE ALSO
Authen::SASL, Authen::SASL::Perl AUTHORS
Graham Barr, Djamel Boudjerda (NEXOR), Paul Connolly, Julian Onions (NEXOR), Yann Kerherve. Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org> COPYRIGHT
Copyright (c) 2003-2009 Graham Barr, Djamel Boudjerda, Paul Connolly, Julian Onions, Nexor, Peter Marschall and Yann Kerherve. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-06-06 Authen::SASL::Perl::DIGEST_MD5(3pm)
Man Page