HTTP::Headers::ActionPack::AuthenticationInfo - The Authentication-Info Header
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'
);
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.
- "new ( %params )"
- "new_from_string ( $header_string )"
- "as_string"
Stevan Little <stevan.little@iinteractive.com>
- 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>
This software is copyright (c) 2012 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it
under the same terms as the Perl 5 programming language system itself.