summaryrefslogtreecommitdiff
path: root/pysnmp/proto/secmod/eso/priv/aes192.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-02-26 08:56:24 +0100
committerGitHub <noreply@github.com>2019-02-26 08:56:24 +0100
commit3f2f132a9fdf7a48ec6131d5498145dded3cfcad (patch)
tree63e6170b35f6b392bf2e3d3feb6996b886e4d36f /pysnmp/proto/secmod/eso/priv/aes192.py
parent2ad26f8bfef0e39b3789d9e6d4fcbf76820c9867 (diff)
downloadpysnmp-git-3f2f132a9fdf7a48ec6131d5498145dded3cfcad.tar.gz
PEP-8 long lines and dunders (#245)
This patch massively reformats the whole codebase mainly wrapping long lines and eliminating dundered private attributes.
Diffstat (limited to 'pysnmp/proto/secmod/eso/priv/aes192.py')
-rw-r--r--pysnmp/proto/secmod/eso/priv/aes192.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pysnmp/proto/secmod/eso/priv/aes192.py b/pysnmp/proto/secmod/eso/priv/aes192.py
index 7df0a0f5..cbbc748e 100644
--- a/pysnmp/proto/secmod/eso/priv/aes192.py
+++ b/pysnmp/proto/secmod/eso/priv/aes192.py
@@ -14,7 +14,8 @@ class AesBlumenthal192(aesbase.AbstractAesBlumenthal):
http://tools.ietf.org/html/draft-blumenthal-aes-usm-04
"""
- SERVICE_ID = (1, 3, 6, 1, 4, 1, 9, 12, 6, 1, 1) # cusmAESCfb192PrivProtocol
+ # cusmAESCfb192PrivProtocol
+ SERVICE_ID = (1, 3, 6, 1, 4, 1, 9, 12, 6, 1, 1)
KEY_SIZE = 24
@@ -29,5 +30,6 @@ class Aes192(aesbase.AbstractAesReeder):
Known to be used by many vendors including Cisco and others.
"""
- SERVICE_ID = (1, 3, 6, 1, 4, 1, 9, 12, 6, 1, 101) # cusmAESCfb192PrivProtocol (non-standard OID)
+ # cusmAESCfb192PrivProtocol (non-standard OID)
+ SERVICE_ID = (1, 3, 6, 1, 4, 1, 9, 12, 6, 1, 101)
KEY_SIZE = 24