PHP 8.5.2
Preview: cred_anonymous.py Size: 958 B
//lib/python3/dist-packages/twisted/plugins/cred_anonymous.py

# -*- test-case-name: twisted.test.test_strcred -*-
#
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Cred plugin for anonymous logins.
"""


from zope.interface import implementer

from twisted import plugin
from twisted.cred.checkers import AllowAnonymousAccess
from twisted.cred.credentials import IAnonymous
from twisted.cred.strcred import ICheckerFactory

anonymousCheckerFactoryHelp = """
This allows anonymous authentication for servers that support it.
"""


@implementer(ICheckerFactory, plugin.IPlugin)
class AnonymousCheckerFactory:
    """
    Generates checkers that will authenticate an anonymous request.
    """

    authType = "anonymous"
    authHelp = anonymousCheckerFactoryHelp
    argStringFormat = "No argstring required."
    credentialInterfaces = (IAnonymous,)

    def generateChecker(self, argstring=""):
        return AllowAnonymousAccess()


theAnonymousCheckerFactory = AnonymousCheckerFactory()

Directory Contents

Dirs: 1 × Files: 20

Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-08 12:56:23
Edit Download
958 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
1.77 KB lrw-r--r-- 2024-08-27 10:30:39
Edit Download
2.23 KB lrw-r--r-- 2024-08-27 10:30:39
Edit Download
1.39 KB lrw-r--r-- 2024-08-27 10:30:39
Edit Download
5.81 KB lrw-r--r-- 2024-08-27 10:30:39
Edit Download
5.49 KB lrwxr-xr-x 2026-01-08 12:56:25
Edit Download
530 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
550 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
212 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
262 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
224 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
236 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
277 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
1.73 KB lrw-r--r-- 2024-08-27 10:30:39
Edit Download
280 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
236 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
3.44 KB lrw-r--r-- 2024-08-27 10:30:39
Edit Download
331 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
938 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download
609 B lrw-r--r-- 2024-08-27 10:30:39
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).