HTTP::Headers::ActionPack::AuthenticationInfo(3) The Authentication-Info Header

VERSION

version 0.09

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'
);

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"

AUTHOR

Stevan Little <[email protected]>

CONTRIBUTORS

COPYRIGHT AND LICENSE

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.