1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-25 11:41:35 +01:00

Merge pull request #4 from jacob-baines/patch-1

Remove Extra Qualification
This commit is contained in:
Matias Fontanini
2014-03-12 14:40:46 -02:00

View File

@@ -422,7 +422,7 @@ SNAP *SessionKeys::tkip_decrypt_unicast(const Dot11Data &dot11, RawPDU &raw) con
return new SNAP(&pload[0], pload.size() - 20);
}
SNAP *SessionKeys::SessionKeys::decrypt_unicast(const Dot11Data &dot11, RawPDU &raw) const {
SNAP *SessionKeys::decrypt_unicast(const Dot11Data &dot11, RawPDU &raw) const {
return is_ccmp ?
ccmp_decrypt_unicast(dot11, raw) :
tkip_decrypt_unicast(dot11, raw);
@@ -546,4 +546,4 @@ bool WPA2Decrypter::decrypt(PDU &pdu) {
} // namespace Crypto
} // namespace Tins
#endif // HAVE_DOT11
#endif // HAVE_DOT11