logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

HTTP::Headers::ActionPack::AuthenticationInfo - The Authentication-Info Header

Author

Contributors

       •   Andrew Nelson <anelson@cpan.org>

       •   Dave Rolsky <autarch@urth.org>

       •   Florian Ragwitz <rafl@debian.org>

       •   Jesse Luehrs <doy@tozt.net>

       •   Karen Etheridge <ether@cpan.org>

Description

       This class represents the Authentication-Info header, it is a pretty parameter based header and so
       inherits from HTTP::Headers::ActionPack::Core::BaseHeaderWithParams to handle all the parameters.

Methods

       "new ( %params )"
       "new_from_string ( $header_string )"
       "as_string"

Name

       HTTP::Headers::ActionPack::AuthenticationInfo - The Authentication-Info Header

Synopsis

         use HTTP::Headers::ActionPack::AuthenticationInfo;

         # create from string
         my $auth_info = HTTP::Headers::ActionPack::AuthenticationInfo->new_from_string(
             'qop=auth-int, rspauth="6629fae49393a05397450978507c4ef1", cnonce="0a4f113b", nc=00000001'
         );

         # create from parameters
         my $auth_info = HTTP::Headers::ActionPack::AuthenticationInfo->new(
             qop     => 'auth-int',
             rspauth => "6629fae49393a05397450978507c4ef1",
             cnonce  => "0a4f113b",
             nc      => '00000001'
         );

Version

       version 0.09

See Also