blob: b9bf10e34938726b3557e283282587088e66b4b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
using System;
namespace Org.BouncyCastle.Utilities.IO.Pem
{
public class PemHeader
{
private string name;
private string val;
public PemHeader(string name, string val)
{
this.name = name;
this.val = val;
}
public virtual string Name
{
get { return name; }
}
public virtual string Value
{
get { return val; }
}
public override int GetHashCode()
{
return GetHashCode(this.name) + 31 * GetHashCode(this.val);
}
public override bool Equals(object obj)
{
if (obj == this)
return true;
if (!(obj is PemHeader))
return false;
PemHeader other = (PemHeader)obj;
return Objects.Equals(this.name, other.name)
&& Objects.Equals(this.val, other.val);
}
private int GetHashCode(string s)
{
if (s == null)
{
return 1;
}
return s.GetHashCode();
}
public override string ToString()
{
return name + ":" + val;
}
}
}
|