File: control

package info (click to toggle)
libapache2-authcookie-perl 3.32-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 496 kB
  • sloc: perl: 1,560; sh: 101; makefile: 28
file content (46 lines) | stat: -rw-r--r-- 1,740 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Source: libapache2-authcookie-perl
Standards-Version: 4.7.2
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
 Xavier Guimard <yadd@debian.org>,
 Ivan Kohler <ivan-debian@420.am>,
Section: perl
Testsuite: autopkgtest-pkg-perl
Build-Depends:
 debhelper-compat (= 13),
Build-Depends-Indep:
 apache2-dev <!nocheck>,
 libapache2-mod-perl2,
 libclass-load-perl <!nocheck>,
 libhash-multivalue-perl <!nocheck>,
 libhttp-body-perl <!nocheck>,
 liburi-perl <!nocheck>,
 libwww-form-urlencoded-perl <!nocheck>,
 perl,
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libapache2-authcookie-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libapache2-authcookie-perl.git
Homepage: https://metacpan.org/release/Apache-AuthCookie

Package: libapache2-authcookie-perl
Architecture: all
Depends:
 ${misc:Depends},
 ${perl:Depends},
 libapache2-mod-perl2,
 libclass-load-perl,
 libhash-multivalue-perl,
 libhttp-body-perl,
 liburi-perl,
 libwww-form-urlencoded-perl,
Description: Perl Authentication and Authorization via cookies
 This module is for mod_perl version 2. If you are running mod_perl version 1,
 you should be using Apache::AuthCookie instead.
 .
 Apache2::AuthCookie allows you to intercept a user's first unauthenticated
 access to a protected document. The user will be presented with a custom form
 where they can enter authentication credentials. The credentials are posted
 to the server where AuthCookie verifies them and returns a session key.
 .
 The session key is returned to the user's browser as a cookie. As a cookie,
 the browser will pass the session key on every subsequent accesses. AuthCookie
 will verify the session key and re-authenticate the user.