Wireshark-bugs: [Wireshark-bugs] [Bug 8328] New: SNMP dissector should handle aes256
Date: Wed, 13 Feb 2013 21:05:36 +0000
Bug ID 8328
Summary SNMP dissector should handle aes256
Classification Unclassified
Product Wireshark
Version 1.8.5
Hardware x86
OS Windows XP
Status UNCONFIRMED
Severity Enhancement
Priority Low
Component Dissection engine (libwireshark)
Assignee bugzilla-admin@wireshark.org
Reporter zforce@gmail.com

Build Information:

--
The current SNMP disector doesn't seem to handle AES256. Indeed, the only call
to the encryption library in packet-snmp.c is

err = gcry_cipher_open(&hd, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CFB, 0);

Many folks are using AES256 on Cisco routers that support it. I think all that
needs to be done is to add a "AES256" option to the user configuration and then
when that option is used call 

err = gcry_cipher_open(&hd, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_CFB, 0);

in place of the current call to the 128bit version of AES.


You are receiving this mail because:
  • You are watching all bug changes.