Wait for the native thread to die in Thread.Join() on Windows
[mono.git] / mcs / class / Mono.Security / Mono.Security.Interface / BufferOffsetSize.cs
1 //
2 // BufferOffsetSize.cs
3 //
4 // Author:
5 //       Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2014-2016 Xamarin Inc. (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26 using System;
27
28 namespace Mono.Security.Interface
29 {
30         public class BufferOffsetSize : SecretParameters, IBufferOffsetSize
31         {
32                 public byte[] Buffer {
33                         get;
34                         private set;
35                 }
36
37                 public int Offset {
38                         get;
39                         internal set;
40                 }
41
42                 public int Size {
43                         get { return EndOffset - Offset; }
44                 }
45
46                 public int EndOffset {
47                         get;
48                         internal set;
49                 }
50
51                 public BufferOffsetSize (byte[] buffer, int offset, int size)
52                 {
53                         Buffer = buffer;
54                         Offset = offset;
55                         EndOffset = offset + size;
56                 }
57
58                 public BufferOffsetSize (byte[] buffer)
59                         : this (buffer, 0, buffer.Length)
60                 {
61                 }
62
63                 public BufferOffsetSize (int size)
64                         : this (new byte [size])
65                 {
66                 }
67
68                 public byte[] GetBuffer ()
69                 {
70                         var copy = new byte [Size];
71                         Array.Copy (Buffer, Offset, copy, 0, Size);
72                         return copy;
73                 }
74
75                 public void TruncateTo (int newSize)
76                 {
77                         if (newSize > Size)
78                                 throw new ArgumentException ("newSize");
79                         EndOffset = Offset + newSize;
80                 }
81
82                 protected void SetBuffer (byte[] buffer, int offset, int size)
83                 {
84                         Buffer = buffer;
85                         Offset = offset;
86                         EndOffset = offset + size;
87                 }
88
89                 protected override void Clear ()
90                 {
91                         Buffer = null;
92                         Offset = EndOffset = 0;
93                 }
94         }
95 }
96