Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
yubico /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
945
B
-rw-r--r--
2015-03-23 08:56
__init__.pyc
974
B
-rw-r--r--
2015-11-19 22:23
__init__.pyo
974
B
-rw-r--r--
2015-11-19 22:23
yubico_exception.py
1.21
KB
-rw-r--r--
2015-03-23 08:56
yubico_exception.pyc
1.93
KB
-rw-r--r--
2015-11-19 22:23
yubico_exception.pyo
1.93
KB
-rw-r--r--
2015-11-19 22:23
yubico_util.py
3.37
KB
-rw-r--r--
2015-03-23 08:56
yubico_util.pyc
4.46
KB
-rw-r--r--
2015-11-19 22:23
yubico_util.pyo
4.46
KB
-rw-r--r--
2015-11-19 22:23
yubikey.py
7.34
KB
-rw-r--r--
2015-03-23 08:56
yubikey.pyc
9.79
KB
-rw-r--r--
2015-11-19 22:23
yubikey.pyo
9.79
KB
-rw-r--r--
2015-11-19 22:23
yubikey_config.py
22.81
KB
-rw-r--r--
2015-03-23 08:56
yubikey_config.pyc
20.17
KB
-rw-r--r--
2015-11-19 22:23
yubikey_config.pyo
20.11
KB
-rw-r--r--
2015-11-19 22:23
yubikey_config_util.py
4.87
KB
-rw-r--r--
2015-03-23 08:56
yubikey_config_util.pyc
6.89
KB
-rw-r--r--
2015-11-19 22:23
yubikey_config_util.pyo
6.76
KB
-rw-r--r--
2015-11-19 22:23
yubikey_defs.py
1000
B
-rw-r--r--
2015-03-23 08:56
yubikey_defs.pyc
650
B
-rw-r--r--
2015-11-19 22:23
yubikey_defs.pyo
650
B
-rw-r--r--
2015-11-19 22:23
yubikey_frame.py
3.89
KB
-rw-r--r--
2015-03-23 08:56
yubikey_frame.pyc
3.42
KB
-rw-r--r--
2015-11-19 22:23
yubikey_frame.pyo
3.42
KB
-rw-r--r--
2015-11-19 22:23
yubikey_neo_usb_hid.py
6.71
KB
-rw-r--r--
2015-03-23 08:56
yubikey_neo_usb_hid.pyc
8.31
KB
-rw-r--r--
2015-11-19 22:23
yubikey_neo_usb_hid.pyo
8.31
KB
-rw-r--r--
2015-11-19 22:23
yubikey_usb_hid.py
22.23
KB
-rw-r--r--
2015-03-23 08:56
yubikey_usb_hid.pyc
21.81
KB
-rw-r--r--
2015-11-19 22:23
yubikey_usb_hid.pyo
21.78
KB
-rw-r--r--
2015-11-19 22:23
Save
Rename
""" class for exceptions used in the other Yubico modules All exceptions raised by the different Yubico modules are inherited from the base class YubicoError. That means you can trap them all, without knowing the details, with code like this : try: # something Yubico related except yubico.yubico_exception.YubicoError as inst: print "ERROR: %s" % inst.reason """ # Copyright (c) 2010, Yubico AB # See the file COPYING for licence statement. __all__ = [ # constants # functions # classes 'YubicoError', 'InputError', 'YubiKeyTimeout', ] from yubico import __version__ class YubicoError(Exception): """ Base class for Yubico exceptions in the yubico package. Attributes: reason -- explanation of the error """ def __init__(self, reason): self.reason = reason def __str__(self): return '<%s instance at %s: %s>' % ( self.__class__.__name__, hex(id(self)), self.reason ) pass class InputError(YubicoError): """ Exception raised for errors in an input to some function. """ def __init__(self, reason='input validation error'): YubicoError.__init__(self, reason)