diff --git a/CVM/Form1.cs b/CVM/Form1.cs index 519ec70..79dc296 100644 --- a/CVM/Form1.cs +++ b/CVM/Form1.cs @@ -23,8 +23,8 @@ public static byte[] watermark(byte[] input) int[] mark = { 32, 68, 117, 114, 97, 116, 105, 111, 110, 32, 101, 100, 105, 116, 101, 100, 32, 117, 115, 105, 110, 103, 32, 67, 86, 77, 32, 71, 105, 116, 104, 117, 98, 32, 117, 114, 108, 58, 32, 104, 116, 116, 112, 115, 58, 47, 47, 103, 105, 116, 104, 117, 98, 46, 99, 111, 109, 47, 119, 114, 101, 102, 103, 116, 122, 119, 101, 118, 101, 47, 67, 117, 114, 115, 101, 100, 86, 105, 100, 101, 111, 77, 97, 107, 101, 114 }; foreach (byte bit in mark) { - pos++; - input[input.Length + pos] = bit; + pos++; + input[input.Length + pos] = bit; }; return input; }