|  |  
 |   |   
 NAMEHTTP::Headers::ActionPack::Authorization::Basic - The Basic Authorization Header VERSIONversion 0.09 SYNOPSIS  use HTTP::Headers::ActionPack::Authorization::Basic;
  # create from string
  my $auth = HTTP::Headers::ActionPack::Authorization::Basic->new_from_string(
      'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='
  );
  # create from parameters
  my $auth = HTTP::Headers::ActionPack::Authorization::Basic->new(
      'Basic' => {
          username => 'Aladdin',
          password => 'open sesame'
      }
  );
  my $auth = HTTP::Headers::ActionPack::Authorization::Basic->new(
      'Basic' => [ 'Aladdin', 'open sesame' ]
  );
  my $auth = HTTP::Headers::ActionPack::Authorization::Basic->new(
      'Basic' => 'QWxhZGRpbjpvcGVuIHNlc2FtZQ=='
  );
DESCRIPTIONThis class represents the Authorization header with the specific focus on the 'Basic' type. METHODS
 AUTHORStevan Little <stevan.little@iinteractive.com> CONTRIBUTORS
 COPYRIGHT AND LICENSEThis 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. 
 
 |