summaryrefslogtreecommitdiff
path: root/pysnmp/proto/secmod/rfc3414/auth/base.py
blob: 6572faa8becc35ab1122a2c1457afb359d1b7f5a (plain)
1
2
3
4
5
6
7
8
class AbstractAuthenticationService:
    serviceID = None
    # 7.2.4.1
    def authenticateOutgoingMsg(self, authKey, wholeMsg):
        pass
    # 7.2.4.2
    def authenticateIncomingMsg(self, authKey, authParameters, wholeMsg):
        pass