3 writes to _macKeyBytes
System.Web (3)
UI\ObjectStateFormatter.cs (3)
164
_macKeyBytes
= macEncodingKey;
228
_macKeyBytes
= new byte[count + 4];
233
_macKeyBytes
= new byte[4];
9 references to _macKeyBytes
System.Web (9)
UI\ObjectStateFormatter.cs (9)
213
if (
_macKeyBytes
== null) {
229
Encoding.Unicode.GetBytes(viewStateUserKey, 0, viewStateUserKey.Length,
_macKeyBytes
, 4);
236
_macKeyBytes
[0] = (byte)pageHashCode;
237
_macKeyBytes
[1] = (byte)(pageHashCode >> 8);
238
_macKeyBytes
[2] = (byte)(pageHashCode >> 16);
239
_macKeyBytes
[3] = (byte)(pageHashCode >> 24);
241
return
_macKeyBytes
;
394
else if ((_page != null && _page.EnableViewStateMac) ||
_macKeyBytes
!= null) {
799
else if ((_page != null && _page.EnableViewStateMac) ||
_macKeyBytes
!= null) {