org.parosproxy.paros.security.CertData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zap Show documentation
Show all versions of zap Show documentation
The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.
/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2018 The ZAP Development Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.parosproxy.paros.security;
import java.util.ArrayList;
import java.util.Objects;
@Deprecated
public class CertData {
private String commonName;
private ArrayList subjectAlternativeNames;
public CertData() {
subjectAlternativeNames = new ArrayList<>();
}
public CertData(String commonName) {
this();
this.commonName = commonName;
if (commonName != null) {
addSubjectAlternativeName(new Name(Name.DNS, commonName));
}
}
public String getCommonName() {
return commonName;
}
public void addSubjectAlternativeName(Name subjectAlternativeName) {
subjectAlternativeNames.add(subjectAlternativeName);
}
public boolean isSubjectAlternativeNameIsCritical() {
return commonName == null;
}
public Name[] getSubjectAlternativeNames() {
Name[] subjectAlternativeNamesArray = new Name[subjectAlternativeNames.size()];
return subjectAlternativeNames.toArray(subjectAlternativeNamesArray);
}
@Override
public int hashCode() {
int result = commonName != null ? commonName.hashCode() : 0;
result =
31 * result
+ (subjectAlternativeNames != null
? subjectAlternativeNames.hashCode()
: 0);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
CertData certData = (CertData) obj;
return Objects.equals(commonName, certData.commonName)
&& Objects.equals(subjectAlternativeNames, certData.subjectAlternativeNames);
}
public static class Name {
public static final int DNS = 2;
public static final int IP_ADDRESS = 7;
private int type;
private String value;
public Name(int type, String value) {
this.type = type;
this.value = value;
}
public int getType() {
return type;
}
public String getValue() {
return value;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Name)) return false;
Name name = (Name) o;
if (getType() != name.getType()) return false;
return getValue() != null
? getValue().equals(name.getValue())
: name.getValue() == null;
}
@Override
public int hashCode() {
int result = getType();
result = 31 * result + (getValue() != null ? getValue().hashCode() : 0);
return result;
}
}
}