nodertc/stun

`validateMessageIntegrity` fails

vibornoff opened this issue · 1 comments

Take a look to

fingerprintLength = 4 + fingerprintAttr.value.length

fingerprintLength value becomes NaN; should be change to

fingerprintLength = 8 // 4 bytes of attribute header + 4 bytes of CRC32

Thanks, missed test fingerprint + message integrity