Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(692)

Unified Diff: webrtc/test/fuzzers/stun_validator_fuzzer.cc

Issue 2117183005: Reland of https://codereview.webrtc.org/2044523002. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/test/fuzzers/stun_parser_fuzzer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fuzzers/stun_validator_fuzzer.cc
diff --git a/webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc b/webrtc/test/fuzzers/stun_validator_fuzzer.cc
similarity index 65%
copy from webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc
copy to webrtc/test/fuzzers/stun_validator_fuzzer.cc
index 9e490d3d4ad968a5fa0e81305bdd958e79e21d18..1f919f59dc58d4aa141cf94ac0f6a35e56be6b65 100644
--- a/webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc
+++ b/webrtc/test/fuzzers/stun_validator_fuzzer.cc
@@ -8,12 +8,16 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "webrtc/modules/audio_coding/codecs/isac/main/include/audio_decoder_isac.h"
-#include "webrtc/test/fuzzers/audio_decoder_fuzzer.h"
+#include <stddef.h>
+#include <stdint.h>
+
+#include "webrtc/p2p/base/stun.h"
namespace webrtc {
void FuzzOneInput(const uint8_t* data, size_t size) {
- AudioDecoderIsac dec(16000);
- FuzzAudioDecoderIncomingPacket(data, size, &dec);
+ const char* message = reinterpret_cast<const char*>(data);
+
+ cricket::StunMessage::ValidateFingerprint(message, size);
+ cricket::StunMessage::ValidateMessageIntegrity(message, size, "");
}
} // namespace webrtc
« no previous file with comments | « webrtc/test/fuzzers/stun_parser_fuzzer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698