11/*
22 EmberLib.net -- .NET implementation of the Ember+ Protocol
3- Copyright (C) 2012-2014 L-S-B Broadcast Technologies GmbH
43
5- This library is free software; you can redistribute it and/or
6- modify it under the terms of the GNU Lesser General Public
7- License as published by the Free Software Foundation; either
8- version 2.1 of the License, or (at your option) any later version.
9-
10- This library is distributed in the hope that it will be useful,
11- but WITHOUT ANY WARRANTY; without even the implied warranty of
12- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13- Lesser General Public License for more details.
14-
15- You should have received a copy of the GNU Lesser General Public
16- License along with this library; if not, write to the Free Software
17- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4+ Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
5+ Distributed under the Boost Software License, Version 1.0.
6+ (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
187*/
198
209using System ;
@@ -77,7 +66,7 @@ public static class BerType
7766 /// ASN.1 type INTEGER
7867 /// </summary>
7968 public const uint Integer = 2 ;
80-
69+
8170 /// <summary>
8271 /// ASN.1 type BIT STRING
8372 /// </summary>
@@ -97,7 +86,7 @@ public static class BerType
9786 /// ASN.1 type OBJECT IDENTIFIER
9887 /// </summary>
9988 public const uint ObjectIdentifier = 6 ;
100-
89+
10190 /// <summary>
10291 /// ASN.1 type ObjectDescriptor
10392 /// </summary>
@@ -107,7 +96,7 @@ public static class BerType
10796 /// ASN.1 type EXTERNAL
10897 /// </summary>
10998 public const uint External = 8 ;
110-
99+
111100 /// <summary>
112101 /// ASN.1 type REAL
113102 /// </summary>
@@ -122,7 +111,7 @@ public static class BerType
122111 /// ASN.1 type EMBEDDED PDV
123112 /// </summary>
124113 public const uint EmbeddedPdv = 11 ;
125-
114+
126115 /// <summary>
127116 /// ASN.1 type UTF8String
128117 /// </summary>
@@ -231,7 +220,7 @@ public static bool IsApplicationDefined(uint type)
231220 }
232221 }
233222
234-
223+
235224 /// <summary>
236225 /// Defines constants used by decoding/encoding entities and
237226 /// some helper methods.
@@ -245,7 +234,7 @@ public static class BerDefinitions
245234 /// </summary>
246235 public const int IndefiniteLength = - 1 ;
247236
248-
237+
249238 /// <summary>
250239 /// Gets the name of the type passed in <paramref name="type"/> in PascalCase
251240 /// (e.g. 'ObjectIdentifier' if type equals 6).
0 commit comments