mirror of https://github.com/OpenKMIP/PyKMIP.git
pep8 fixes
This commit is contained in:
parent
084fbcdb61
commit
ff69f85091
|
@ -30,6 +30,7 @@ CONFIG_FILE = [
|
||||||
if os.environ.get("UNITTEST"):
|
if os.environ.get("UNITTEST"):
|
||||||
CONFIG_FILE = []
|
CONFIG_FILE = []
|
||||||
|
|
||||||
|
|
||||||
class ConfigHelper(object):
|
class ConfigHelper(object):
|
||||||
NONE_VALUE = 'None'
|
NONE_VALUE = 'None'
|
||||||
DEFAULT_HOST = "127.0.0.1"
|
DEFAULT_HOST = "127.0.0.1"
|
||||||
|
|
|
@ -269,7 +269,8 @@ class CryptographyEngine(api.CryptographicEngine):
|
||||||
)
|
)
|
||||||
cipher_algorithm = self._symmetric_key_algorithms.get(algorithm)
|
cipher_algorithm = self._symmetric_key_algorithms.get(algorithm)
|
||||||
try:
|
try:
|
||||||
# ARC4 and other non-block cipher algorithms will raise TypeError exceptions
|
# ARC4 and other non-block cipher algorithms will
|
||||||
|
# raise TypeError exceptions
|
||||||
c = cmac.CMAC(cipher_algorithm(key), backend=default_backend())
|
c = cmac.CMAC(cipher_algorithm(key), backend=default_backend())
|
||||||
c.update(data)
|
c.update(data)
|
||||||
mac_data = c.finalize()
|
mac_data = c.finalize()
|
||||||
|
|
Loading…
Reference in New Issue