| HTTP::Headers::ActionPack::AuthenticationInfo(3pm) | User Contributed Perl Documentation | HTTP::Headers::ActionPack::AuthenticationInfo(3pm) |
HTTP::Headers::ActionPack::AuthenticationInfo - The Authentication-Info Header
version 0.09
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.
Stevan Little <stevan.little@iinteractive.com>
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.
| 2022-06-14 | perl v5.34.0 |