summaryrefslogtreecommitdiff
path: root/pysnmp/proto/secmod/rfc3414/auth/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/proto/secmod/rfc3414/auth/base.py')
-rw-r--r--pysnmp/proto/secmod/rfc3414/auth/base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pysnmp/proto/secmod/rfc3414/auth/base.py b/pysnmp/proto/secmod/rfc3414/auth/base.py
index e412adea..133416b8 100644
--- a/pysnmp/proto/secmod/rfc3414/auth/base.py
+++ b/pysnmp/proto/secmod/rfc3414/auth/base.py
@@ -15,6 +15,9 @@ class AbstractAuthenticationService(object):
def localizeKey(self, authKey, snmpEngineID):
raise error.ProtocolError(errind.noAuthentication)
+
+ def getTagLen(self):
+ raise error.ProtocolError(errind.noAuthentication)
# 7.2.4.1
def authenticateOutgoingMsg(self, authKey, wholeMsg):