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::Authorization::Digest - The Digest Authorization 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 Authorization header with the specific focus on the 'Basic' type. It is just a
       simple subclass of HTTP::Headers::ActionPack::Core::BaseAuthHeader

Methods

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

Name

       HTTP::Headers::ActionPack::Authorization::Digest - The Digest Authorization Header

Synopsis

         use HTTP::Headers::ActionPack::Authorization::Digest;

         # create from string
         my $auth = HTTP::Headers::ActionPack::Authorization::Digest->new_from_string(
             q{Digest
               username="jon.dough@mobile.biz",
               realm="RoamingUsers@mobile.biz",
               nonce="CjPk9mRqNuT25eRkajM09uTl9nM09uTl9nMz5OX25PZz==",
               uri="sip:home.mobile.biz",
               qop=auth-int,
               nc=00000001,
               cnonce="0a4f113b",
               response="6629fae49393a05397450978507c4ef1",
               opaque="5ccc069c403ebaf9f0171e9517f40e41"}
         );

         # create from parameters
         my $auth = HTTP::Headers::ActionPack::Authorization::Digest->new(
             'Digest' => (
                 username => 'jon.dough@mobile.biz',
                 realm    => 'RoamingUsers@mobile.biz',
                 nonce    => "CjPk9mRqNuT25eRkajM09uTl9nM09uTl9nMz5OX25PZz==",
                 uri      => "sip:home.mobile.biz",
                 qop      => 'auth-int',
                 nc       => '00000001',
                 cnonce   => "0a4f113b",
                 response => "6629fae49393a05397450978507c4ef1",
                 opaque   => "5ccc069c403ebaf9f0171e9517f40e41"
             )
         );

Version

       version 0.09

See Also