package org.bouncycastle.util.io.pem;
public class
{
private String ;
private String ;
public (String name, String value)
{
this.name = name;
this.value = value;
}
public String ()
{
return name;
}
public String ()
{
return value;
}
public int ()
{
return getHashCode(this.name) + 31 * getHashCode(this.value);
}
public boolean (Object o)
{
if (!(o instanceof PemHeader))
{
return false;
}
PemHeader other = (PemHeader)o;
return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value));
}
private int (String s)
{
if (s == null)
{
return 1;
}
return s.hashCode();
}
private boolean (String s1, String s2)
{
if (s1 == s2)
{
return true;
}
if (s1 == null || s2 == null)
{
return false;
}
return s1.equals(s2);
}
}