Mr.Combet Webshell
Your IP :
3.142.114.166
Server IP :
185.136.159.155
Server :
Linux 185-136-159-155.cprapid.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software :
Apache
PHP Version :
8.1.29
Add File :
Submit
Add Directory :
Submit
Dir :
~
/
lib
/
python2.7
/
site-packages
/
certbot
/
Edit File Name :
achallenges.pyo
� ���_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"