You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(!encrypted)writer.WriteByte(messageType);// If we are not using encryption, write the byte. Note that the current position in the stream is just after the HMAC.
54
55
55
-
stream.Position=1;// First byte is the security flags. The HMAC will now be written after that
56
+
stream.Position=hmacPosition;// Set the position to where the HMAC should be written.
0 commit comments