Skip to content

Commit 1c91bee

Browse files
committed
renamed UniversalTagBase to Asn1Universal and bumped to 1.2.9
1 parent 1bd1bda commit 1c91bee

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

Asn1Parser/Asn1Parser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
44
<Title>High-performance and robust .NET ASN.1 DER parser</Title>
5-
<Version>1.2.8</Version>
5+
<Version>1.2.9</Version>
66
<Authors>Vadims Podans, PKI Solutions Inc.</Authors>
77
<Company>PKI Solutions LLC</Company>
88
<Description>ASN.1 binary parser and utility set for binary data encoded with Distinguished Encoding Rules (DER).</Description>

Asn1Parser/Asn1Reader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,10 +522,10 @@ public void Reset() {
522522
decode(null, 0);
523523
}
524524
/// <summary>
525-
/// Gets the appropriate primitive tag object from <strong>Universal</strong> namespace, or <see cref="UniversalTagBase"/> object.
525+
/// Gets the appropriate primitive tag object from <strong>Universal</strong> namespace, or <see cref="Asn1Universal"/> object.
526526
/// </summary>
527527
/// <returns>ASN.1 object that represents current tag.</returns>
528-
public UniversalTagBase GetTagObject() {
528+
public Asn1Universal GetTagObject() {
529529
switch (Tag) {
530530
case (Byte)Asn1Type.BOOLEAN:
531531
return new Asn1Boolean(this);

Asn1Parser/Universal/Asn1AnyType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// <summary>
33
/// Represents arbitrary ASN.1 type.
44
/// </summary>
5-
public class Asn1AnyType : UniversalTagBase {
5+
public class Asn1AnyType : Asn1Universal {
66
/// <summary>
77
/// Initializes a new instance of <strong>Asn1AnyType</strong> class.
88
/// </summary>

Asn1Parser/Universal/Asn1BitString.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
66
/// <summary>
77
/// Represents a <strong>BIT_STRING</strong> ASN.1 tag object.
88
/// </summary>
9-
public sealed class Asn1BitString : UniversalTagBase {
9+
public sealed class Asn1BitString : Asn1Universal {
1010
const Asn1Type TYPE = Asn1Type.BIT_STRING;
1111

1212
/// <summary>

Asn1Parser/Universal/Asn1Boolean.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
44
/// <summary>
55
/// Represents an ASN.1 <strong>BOOLEAN</strong> data type.
66
/// </summary>
7-
public sealed class Asn1Boolean : UniversalTagBase {
7+
public sealed class Asn1Boolean : Asn1Universal {
88
const Asn1Type TYPE = Asn1Type.BOOLEAN;
99

1010
/// <summary>

Asn1Parser/Universal/Asn1DateTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
44
/// <summary>
55
/// Represents base class for UTCTime and GeneralizedTime ASN.1 types
66
/// </summary>
7-
public abstract class Asn1DateTime : UniversalTagBase {
7+
public abstract class Asn1DateTime : Asn1Universal {
88
/// <summary>
99
/// Initializes a new instance of <strong>Asn1DateTime</strong> class.
1010
/// </summary>

Asn1Parser/Universal/Asn1Enumerated.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
88
/// <summary>
99
/// Represents an ASN.1 <strong>ENUMERATED</strong> data type.
1010
/// </summary>
11-
public sealed class Asn1Enumerated : UniversalTagBase {
11+
public sealed class Asn1Enumerated : Asn1Universal {
1212
const Asn1Type TYPE = Asn1Type.ENUMERATED;
1313

1414
/// <summary>

Asn1Parser/Universal/Asn1Integer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
77
/// <summary>
88
/// Represents an ASN.1 <strong>INTEGER</strong> data type.
99
/// </summary>
10-
public sealed class Asn1Integer : UniversalTagBase {
10+
public sealed class Asn1Integer : Asn1Universal {
1111
const Asn1Type TYPE = Asn1Type.INTEGER;
1212

1313
/// <summary>

Asn1Parser/Universal/Asn1Null.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
55
/// <summary>
66
/// Represents an ASN.1 <strong>NULL</strong> data type.
77
/// </summary>
8-
public sealed class Asn1Null : UniversalTagBase {
8+
public sealed class Asn1Null : Asn1Universal {
99
const Asn1Type TYPE = Asn1Type.NULL;
1010

1111
/// <summary>

Asn1Parser/Universal/Asn1ObjectIdentifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace SysadminsLV.Asn1Parser.Universal {
99
/// <summary>
1010
/// Represents ASN.1 Object Identifier type.
1111
/// </summary>
12-
public sealed class Asn1ObjectIdentifier : UniversalTagBase {
12+
public sealed class Asn1ObjectIdentifier : Asn1Universal {
1313
const Asn1Type TYPE = Asn1Type.OBJECT_IDENTIFIER;
1414

1515
/// <summary>

0 commit comments

Comments
 (0)