summaryrefslogtreecommitdiff
path: root/pysnmp/entity/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/entity/config.py')
-rw-r--r--pysnmp/entity/config.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pysnmp/entity/config.py b/pysnmp/entity/config.py
index 13e284f1..80de78ed 100644
--- a/pysnmp/entity/config.py
+++ b/pysnmp/entity/config.py
@@ -29,10 +29,10 @@ usmNoAuthProtocol = noauth.NoAuth.serviceID
usmDESPrivProtocol = des.Des.serviceID
usm3DESEDEPrivProtocol = des3.Des3.serviceID
usmAesCfb128Protocol = aes.Aes.serviceID
-usmAesBlumenthalCfb192Protocol = aes192.Aes192.serviceID # semi-standard but not widely used
-usmAesBlumenthalCfb256Protocol = aes256.Aes256.serviceID # semi-standard but not widely used
-usmAesCfb192Protocol = aes192.AesReeder192.serviceID # non-standard but used by many vendors
-usmAesCfb256Protocol = aes256.AesReeder256.serviceID # non-standard but used by many vendors
+usmAesBlumenthalCfb192Protocol = aes192.AesBlumenthal192.serviceID # semi-standard but not widely used
+usmAesBlumenthalCfb256Protocol = aes256.AesBlumenthal256.serviceID # semi-standard but not widely used
+usmAesCfb192Protocol = aes192.Aes192.serviceID # non-standard but used by many vendors
+usmAesCfb256Protocol = aes256.Aes256.serviceID # non-standard but used by many vendors
usmNoPrivProtocol = nopriv.NoPriv.serviceID
# Auth services
@@ -44,10 +44,10 @@ authServices = {hmacmd5.HmacMd5.serviceID: hmacmd5.HmacMd5(),
privServices = {des.Des.serviceID: des.Des(),
des3.Des3.serviceID: des3.Des3(),
aes.Aes.serviceID: aes.Aes(),
- aes192.Aes192.serviceID: aes192.Aes192(),
- aes256.Aes256.serviceID: aes256.Aes256(),
- aes192.AesReeder192.serviceID: aes192.AesReeder192(), # non-standard
- aes256.AesReeder256.serviceID: aes256.AesReeder256(), # non-standard
+ aes192.AesBlumenthal192.serviceID: aes192.AesBlumenthal192(),
+ aes256.AesBlumenthal256.serviceID: aes256.AesBlumenthal256(),
+ aes192.Aes192.serviceID: aes192.Aes192(), # non-standard
+ aes256.Aes256.serviceID: aes256.Aes256(), # non-standard
nopriv.NoPriv.serviceID: nopriv.NoPriv()}