mirror of
https://github.com/mfontanini/libtins
synced 2026-01-29 13:04:28 +01:00
WPA2Decrypter now decrypts both CCMP and TKIP encrypted traffic.
This commit is contained in:
@@ -60,6 +60,14 @@ public:
|
||||
byte_array(InputIterator start) {
|
||||
std::copy(start, n, data);
|
||||
}
|
||||
|
||||
uint8_t &operator[](size_t i) {
|
||||
return data[i];
|
||||
}
|
||||
|
||||
uint8_t operator[](size_t i) const{
|
||||
return data[i];
|
||||
}
|
||||
|
||||
iterator begin() {
|
||||
return data;
|
||||
|
||||
Reference in New Issue
Block a user