| Server IP : 103.4.122.14 / Your IP : 216.73.216.103 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips System : Linux cwp2.slnet.com.au 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : statewid ( 1251) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/python2.7/site-packages/certbot/ |
Upload File : |
�
���_c @ s� d Z d d l Z d d l Z d d l m Z e j e � Z d e j f d � � YZ
d e
f d � � YZ d e
f d � � YZ d S(
s0 Client annotated ACME challenges.
Please use names such as ``achall`` to distinguish from variables "of type"
:class:`acme.challenges.Challenge` (denoted by ``chall``)
and :class:`.ChallengeBody` (denoted by ``challb``)::
from acme import challenges
from acme import messages
from certbot import achallenges
chall = challenges.DNS(token='foo')
challb = messages.ChallengeBody(chall=chall)
achall = achallenges.DNS(chall=challb, domain='example.com')
Note, that all annotated challenges act as a proxy objects::
achall.token == challb.token
i����N( t
challengest AnnotatedChallengec B s# e Z d Z d Z e Z d � Z RS( s� Client annotated challenge.
Wraps around server provided challenge and annotates with data
useful for the client.
:ivar challb: Wrapped `~.ChallengeBody`.
t challbc C s t | j | � S( N( t getattrR ( t selft name( ( s7 /usr/lib/python2.7/site-packages/certbot/achallenges.pyt __getattr__* s ( s challb( t __name__t
__module__t __doc__t __slots__t NotImplementedt acme_typeR ( ( ( s7 /usr/lib/python2.7/site-packages/certbot/achallenges.pyR s t"